summaryrefslogtreecommitdiff
path: root/test/Driver/debug.c
diff options
context:
space:
mode:
authorNick Lewycky <nicholas@mxc.ca>2011-10-21 22:21:24 +0000
committerNick Lewycky <nicholas@mxc.ca>2011-10-21 22:21:24 +0000
commit9c0778bbdaab668e173f20f10b57c59aa586d69d (patch)
tree02b712f3987f6efb3530af5fd4d9a209b19e59d6 /test/Driver/debug.c
parent6db51f707e93816364039a2a904d13d3968c7f05 (diff)
downloadclang-9c0778bbdaab668e173f20f10b57c59aa586d69d.tar.gz
Doug reports that this test is still failing. Try applying Benjamin Kramer's
suggestion! git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@142692 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Driver/debug.c')
-rw-r--r--test/Driver/debug.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/Driver/debug.c b/test/Driver/debug.c
index e7830b961e..742a1d8a00 100644
--- a/test/Driver/debug.c
+++ b/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.