diff options
Diffstat (limited to 'llvm/test/LLVMC/C')
-rw-r--r-- | llvm/test/LLVMC/C/hello.c | 2 | ||||
-rw-r--r-- | llvm/test/LLVMC/C/opt-test.c | 2 | ||||
-rw-r--r-- | llvm/test/LLVMC/C/sink.c | 2 | ||||
-rw-r--r-- | llvm/test/LLVMC/C/wall.c | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/llvm/test/LLVMC/C/hello.c b/llvm/test/LLVMC/C/hello.c index 1cda9c3a340..b2d903f8d53 100644 --- a/llvm/test/LLVMC/C/hello.c +++ b/llvm/test/LLVMC/C/hello.c @@ -1,7 +1,7 @@ /* * Check that we can compile helloworld * RUN: llvmc %s -o %t - * RUN: ./%t | grep hello + * RUN: %abs_tmp | grep hello */ #include <stdio.h> diff --git a/llvm/test/LLVMC/C/opt-test.c b/llvm/test/LLVMC/C/opt-test.c index ed2df52fed7..d69dc9b479f 100644 --- a/llvm/test/LLVMC/C/opt-test.c +++ b/llvm/test/LLVMC/C/opt-test.c @@ -1,7 +1,7 @@ /* * Check that the -opt switch works. * RUN: llvmc %s -opt -o %t - * RUN: ./%t | grep hello + * RUN: %abs_tmp | grep hello */ #include <stdio.h> diff --git a/llvm/test/LLVMC/C/sink.c b/llvm/test/LLVMC/C/sink.c index 3edbf78112e..bdff340da90 100644 --- a/llvm/test/LLVMC/C/sink.c +++ b/llvm/test/LLVMC/C/sink.c @@ -1,7 +1,7 @@ /* * Check that the 'sink' options work. * RUN: llvmc -v -Wall %s -o %t |& grep "Wall" - * RUN: ./%t | grep hello + * RUN: %abs_tmp | grep hello */ #include <stdio.h> diff --git a/llvm/test/LLVMC/C/wall.c b/llvm/test/LLVMC/C/wall.c index 2c72ea69929..f6760990b88 100644 --- a/llvm/test/LLVMC/C/wall.c +++ b/llvm/test/LLVMC/C/wall.c @@ -1,7 +1,7 @@ /* * Check that -Wall works as intended * RUN: llvmc -Wall %s -o %t - * RUN: ./%t | grep hello + * RUN: %abs_tmp | grep hello */ #include <stdio.h> |