forked from OSchip/llvm-project
[Driver][test] Avoid undefined grep in darwin-ld.c
Summary: question-mark is not a BRE special character. POSIX.1-2017 XBD Section 9.3.2 indicates that the interpretation of `\?` as used by rC366282 is undefined. This patch uses an ERE instead. Reviewers: rnk, daltenty, xingxue, jasonliu Reviewed By: rnk Subscribers: cfe-commits Tags: #clang Differential Revision: https://reviews.llvm.org/D65668 llvm-svn: 367709
This commit is contained in:
parent
06cccc5e6f
commit
d5765ee564
|
@ -5,9 +5,9 @@
|
|||
|
||||
// Make sure we run dsymutil on source input files.
|
||||
// RUN: %clang -target i386-apple-darwin9 -### -g %s -o BAR 2> %t.log
|
||||
// RUN: grep '".*dsymutil\(.exe\)\?" "-o" "BAR.dSYM" "BAR"' %t.log
|
||||
// RUN: grep -E '".*dsymutil(\.exe)?" "-o" "BAR.dSYM" "BAR"' %t.log
|
||||
// RUN: %clang -target i386-apple-darwin9 -### -g -filelist FOO %s -o BAR 2> %t.log
|
||||
// RUN: grep '".*dsymutil\(.exe\)\?" "-o" "BAR.dSYM" "BAR"' %t.log
|
||||
// RUN: grep -E '".*dsymutil(\.exe)?" "-o" "BAR.dSYM" "BAR"' %t.log
|
||||
|
||||
// Check linker changes that came with new linkedit format.
|
||||
// RUN: touch %t.o
|
||||
|
|
Loading…
Reference in New Issue