diff options
author | Nick Lewycky <nicholas@mxc.ca> | 2011-10-21 22:21:24 +0000 |
---|---|---|
committer | Nick Lewycky <nicholas@mxc.ca> | 2011-10-21 22:21:24 +0000 |
commit | 197ca87e7e4076bcf7ff8b920a64c02370f26061 (patch) | |
tree | 66401ebc5f74ce0b0221707ca1ca903579ee1b0f /clang/test/Driver/debug.c | |
parent | 118b38cbf181bd7b7feb89770a5ad8386e036509 (diff) | |
download | bcm5719-llvm-197ca87e7e4076bcf7ff8b920a64c02370f26061.tar.gz bcm5719-llvm-197ca87e7e4076bcf7ff8b920a64c02370f26061.zip |
Doug reports that this test is still failing. Try applying Benjamin Kramer's
suggestion!
llvm-svn: 142692
Diffstat (limited to 'clang/test/Driver/debug.c')
-rw-r--r-- | clang/test/Driver/debug.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/clang/test/Driver/debug.c b/clang/test/Driver/debug.c index e7830b961ea..742a1d8a007 100644 --- a/clang/test/Driver/debug.c +++ b/clang/test/Driver/debug.c @@ -1,6 +1,5 @@ // RUN: cd %S && %clang -### -g %s -c 2>&1 | grep '"-fdebug-compilation-dir" "'%S'"' -// RUN: (sv PWD=/foo && %clang -### -g %s -c 2>&1 | grep '"-fdebug-compilation-dir" "/foo"') || \ -// RUN: PWD=/foo %clang -### -g %s -c 2>&1 | grep '"-fdebug-compilation-dir" "/foo"' +// RUN: env PWD=/foo %clang -### -g %s -c 2>&1 | grep '"-fdebug-compilation-dir" "/foo"' // This test uses grep instead of FileCheck so that we get %S -> dirname // substitution. |