diff options
-rw-r--r-- | clang/test/PCH/reloc.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/clang/test/PCH/reloc.c b/clang/test/PCH/reloc.c index ba259461492..b08187fdb8d 100644 --- a/clang/test/PCH/reloc.c +++ b/clang/test/PCH/reloc.c @@ -1,6 +1,6 @@ -// RUN: clang-cc -emit-pch -o %t --relocatable-pch -isysroot `pwd`/libroot `pwd`/libroot/usr/include/reloc.h && -// RUN: clang-cc -include-pch %t -isysroot `pwd`/libroot %s -verify -// FIXME (test harness can't do this?): not clang-cc -include-pch %t %s +// RUN: clang-cc -emit-pch -o %t --relocatable-pch -isysroot %S/libroot %S/libroot/usr/include/reloc.h && +// RUN: clang-cc -include-pch %t -isysroot %S/libroot %s -verify && +// RUN: not clang-cc -include-pch %t %s #include <reloc.h> @@ -11,4 +11,4 @@ int y = 5; // expected-error{{redefinition}} // expected-note{{previous definition}} -// expected-note{{previous definition}}
\ No newline at end of file +// expected-note{{previous definition}} |