diff options
author | Zachary Turner <zturner@google.com> | 2016-09-20 19:10:56 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2016-09-20 19:10:56 +0000 |
commit | c4815d4f426abe09089b707837a15fdfccdcf1fc (patch) | |
tree | 2982c2dd200932ebc37d47be4cd0e730d824539a | |
parent | ebfc680685b7bb246d636cc9305ae6ab268eb0b5 (diff) | |
download | bcm5719-llvm-c4815d4f426abe09089b707837a15fdfccdcf1fc.tar.gz bcm5719-llvm-c4815d4f426abe09089b707837a15fdfccdcf1fc.zip |
Fix a regex error breaking tests.
llvm-svn: 282004
-rw-r--r-- | clang/test/Driver/warning-options.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/Driver/warning-options.cpp b/clang/test/Driver/warning-options.cpp index 73b5d23ccda..7b9d4ab53a3 100644 --- a/clang/test/Driver/warning-options.cpp +++ b/clang/test/Driver/warning-options.cpp @@ -5,4 +5,4 @@ // Check that -isysroot warns on nonexistent paths. // RUN: %clang -### -c -target i386-apple-darwin10 -isysroot %T/warning-options %s 2>&1 | FileCheck --check-prefix=CHECK-ISYSROOT %s -// CHECK-ISYSROOT: warning: no such sysroot directory: '{{([A-Za-z]:.*)?}}/warning-options' +// CHECK-ISYSROOT: warning: no such sysroot directory: '{{.*}}/warning-options' |