Skip to content

Commit 98082cc

Browse files
author
Kevin Frei
committed
Adding flags to make output the same as before for tests
1 parent 172394c commit 98082cc

8 files changed

+8
-10
lines changed

llvm/test/DebugInfo/X86/skeleton-unit-verify.s

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# RUN: llvm-mc -triple x86_64-unknown-linux %s -filetype=obj -o %t.o
2-
# RUN: not llvm-dwarfdump --verify %t.o | FileCheck %s
2+
# RUN: not llvm-dwarfdump --no-aggregate-errors --verify %t.o | FileCheck %s
33

44
# CHECK: Verifying .debug_abbrev...
55
# CHECK-NEXT: Verifying .debug_info Unit Header Chain...
@@ -51,5 +51,3 @@
5151
.byte 2 # Abbrev [2]
5252
.byte 0
5353
.Lcu_end1:
54-
55-

llvm/test/DebugInfo/dwarfdump-accel.test

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
RUN: llvm-dwarfdump -v %p/Inputs/dwarfdump-objc.x86_64.o | FileCheck %s
2-
RUN: not llvm-dwarfdump -verify %p/Inputs/dwarfdump-objc.x86_64.o | FileCheck %s --check-prefix=VERIFY
2+
RUN: not llvm-dwarfdump -no-aggregate-errors -verify %p/Inputs/dwarfdump-objc.x86_64.o | FileCheck %s --check-prefix=VERIFY
33

44
Gather some DIE indexes to verify the accelerator table contents.
55
CHECK: .debug_info contents

llvm/test/tools/llvm-dwarfdump/X86/verify_attr_file_indexes.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# RUN: yaml2obj %s | not llvm-dwarfdump --verify - | FileCheck %s --implicit-check-not=error:
1+
# RUN: yaml2obj %s | not llvm-dwarfdump --no-aggregate-errors --verify - | FileCheck %s --implicit-check-not=error:
22

33
# CHECK: error: DIE has DW_AT_decl_file with an invalid file index 2 (valid values are [1-1]){{[[:space:]]}}
44
# CHECK-NEXT: 0x0000001e: DW_TAG_subprogram

llvm/test/tools/llvm-dwarfdump/X86/verify_attr_file_indexes_no_files.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# RUN: yaml2obj %s | not llvm-dwarfdump --verify - | FileCheck %s --implicit-check-not=error:
1+
# RUN: yaml2obj %s | not llvm-dwarfdump --no-aggregate-errors --verify - | FileCheck %s --implicit-check-not=error:
22

33
# CHECK: error: DIE has DW_AT_decl_file with an invalid file index 2 (the file table in the prologue is empty){{[[:space:]]}}
44
# CHECK-NEXT: 0x0000001e: DW_TAG_subprogram

llvm/test/tools/llvm-dwarfdump/X86/verify_file_encoding.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# RUN: yaml2obj %s | not llvm-dwarfdump --verify - | FileCheck %s --implicit-check-not=error:
1+
# RUN: yaml2obj %s | not llvm-dwarfdump --no-aggregate-errors --verify - | FileCheck %s --implicit-check-not=error:
22

33
# CHECK: error: DIE has DW_AT_decl_file with invalid encoding{{[[:space:]]}}
44
# CHECK-NEXT: 0x0000001a: DW_TAG_subprogram

llvm/test/tools/llvm-dwarfdump/X86/verify_overlapping_cu_ranges.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
#
4040
# 0x00000066: NULL
4141

42-
# RUN: yaml2obj %s | not llvm-dwarfdump --verify - | FileCheck %s --implicit-check-not=error:
42+
# RUN: yaml2obj %s | not llvm-dwarfdump --no-aggregate-errors --verify - | FileCheck %s --implicit-check-not=error:
4343

4444
# CHECK: error: DIE has overlapping ranges in DW_AT_ranges attribute: [0x0000000000000000, 0x0000000000000020) and [0x0000000000000000, 0x0000000000000030)
4545

llvm/test/tools/llvm-dwarfdump/X86/verify_parent_zero_length.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
# 0x00000056: NULL
3131

3232

33-
# RUN: yaml2obj %s | not llvm-dwarfdump --verify - | FileCheck %s --implicit-check-not=error:
33+
# RUN: yaml2obj %s | not llvm-dwarfdump --no-aggregate-errors --verify - | FileCheck %s --implicit-check-not=error:
3434

3535
# CHECK: Verifying -: file format Mach-O 64-bit x86-64
3636
# CHECK: Verifying .debug_abbrev...

llvm/test/tools/llvm-dwarfdump/X86/verify_split_cu.s

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# RUN: llvm-mc %s -filetype obj -triple x86_64-linux-gnu -o - \
2-
# RUN: | not llvm-dwarfdump -v -verify - 2>&1 \
2+
# RUN: | not llvm-dwarfdump --no-aggregate-errors -v -verify - 2>&1 \
33
# RUN: | FileCheck %s --implicit-check-not=error --implicit-check-not=warning
44

55
# CHECK: Verifying dwo Units...

0 commit comments

Comments
 (0)