aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJuneyoung Lee <aqjune@gmail.com>2020-03-15 12:02:19 +0900
committerJuneyoung Lee <aqjune@gmail.com>2020-03-15 12:02:19 +0900
commit27f303924e0b32e22820fa38cb659e9694954784 (patch)
tree42d0d6f981707fc8f76d4b84d737eb94965f8f39
parent10aa7ea951e22dbd7f2ebdeb6410cfbc8a251eb1 (diff)
Be more strict when checking existence of foo
-rw-r--r--llvm/test/tools/llvm-objdump/X86/disassemble-functions.test2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/tools/llvm-objdump/X86/disassemble-functions.test b/llvm/test/tools/llvm-objdump/X86/disassemble-functions.test
index 0644387cfe1b..d2000dbc5350 100644
--- a/llvm/test/tools/llvm-objdump/X86/disassemble-functions.test
+++ b/llvm/test/tools/llvm-objdump/X86/disassemble-functions.test
@@ -3,7 +3,7 @@
# RUN: yaml2obj -o %t.out %p/Inputs/simple-executable-x86_64.yaml
# RUN: llvm-objdump -d %t.out --disassemble-symbols=main \
-# RUN: | FileCheck %s --check-prefix=MAIN --implicit-check-not=foo --implicit-check-not=somedata
+# RUN: | FileCheck %s --check-prefix=MAIN --implicit-check-not="<foo>:" --implicit-check-not=somedata
# RUN: llvm-objdump -d %t.out --disassemble-symbols=main,foo \
# RUN: | FileCheck %s --check-prefixes=MAIN,FOO --implicit-check-not=somedata