diff options
author | Hans Wennborg <hans@hanshq.net> | 2014-02-18 23:25:20 +0000 |
---|---|---|
committer | Hans Wennborg <hans@hanshq.net> | 2014-02-18 23:25:20 +0000 |
commit | 9873a5ba4f17c79b280596c4bbaf707b7d3011fb (patch) | |
tree | df67d697ccbe4cbaeede27ce5e7f2f6ee915b914 | |
parent | 0c12b36ebb1d8a1f4785dd321431f8b5da3ac8c7 (diff) | |
download | bcm5719-llvm-9873a5ba4f17c79b280596c4bbaf707b7d3011fb.tar.gz bcm5719-llvm-9873a5ba4f17c79b280596c4bbaf707b7d3011fb.zip |
Fix the Driver/cl-fallback.c test
On machines that have cl.exe on PATH, the note will print the full path.
llvm-svn: 201613
-rw-r--r-- | clang/test/Driver/cl-fallback.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/Driver/cl-fallback.c b/clang/test/Driver/cl-fallback.c index f58aa3262fe..2e59ccdbbaa 100644 --- a/clang/test/Driver/cl-fallback.c +++ b/clang/test/Driver/cl-fallback.c @@ -47,6 +47,6 @@ // RUN: not %clang_cl /fallback /c -- %s 2>&1 | \ // RUN: FileCheck -check-prefix=ErrNote %s -// ErrNote: note: falling back to cl.exe +// ErrNote: note: falling back to {{.*}}cl.exe #error "This fails to compile." |