]> granicus.if.org Git - clang/commitdiff
Fix tests to not depend on /dev/null existing.
authorDaniel Dunbar <daniel@zuster.org>
Tue, 3 Nov 2009 17:56:18 +0000 (17:56 +0000)
committerDaniel Dunbar <daniel@zuster.org>
Tue, 3 Nov 2009 17:56:18 +0000 (17:56 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@85908 91177308-0d34-0410-b5e6-96231b3b80d8

test/Frontend/dependency-gen.c
test/PCH/pr4489.c

index 4a1611aecff09183b57e1e96095af8cbdbc26a84..953869912bbbf4d79b52af474e85e3ac0d029c43 100644 (file)
@@ -1,7 +1,8 @@
 // rdar://6533411
-// RUN: clang -MD -MF %t.d -c -x c -o %t.o /dev/null && 
+// RUN: clang -MD -MF %t.d -c -x c -o %t.o %s && 
 // RUN: grep '.*dependency-gen.*:' %t.d &&
-// RUN: grep '/dev/null' %t.d &&
+// RUN: grep 'dependency-gen.c' %t.d &&
 
-// RUN: clang -M -x c /dev/null -o %t.deps &&
-// RUN: grep 'null.o: /dev/null' %t.deps
+// RUN: clang -M -x c %s -o %t.d &&
+// RUN: grep '.*dependency-gen.*:' %t.d &&
+// RUN: grep 'dependency-gen.c' %t.d
index 7730819e9213e3064e0c1100e9a3074f9aabb76e..d05d5cd7ddab1db935bf60b6fe3d0a091a25c28e 100644 (file)
@@ -1,5 +1,6 @@
 // RUN: clang -x c-header -o %t.pch %s &&
-// RUN: clang -include %t -x c /dev/null -emit-llvm -S -o -
+// RUN: echo > %t.empty.c &&
+// RUN: clang -include %t -x c %t.empty.c -emit-llvm -S -o -
 // PR 4489: Crash with PCH
 // PR 4492: Crash with PCH (round two)
 // PR 4509: Crash with PCH (round three)
@@ -37,4 +38,4 @@ void y1(void)
 {
   extern char e;
   fprintf (0, "asdf");
-}
\ No newline at end of file
+}