diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-09-13 01:40:48 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-09-13 01:40:48 +0000 |
commit | fbc18f839c8dcae38e73ae12bee9d34a416d2fcd (patch) | |
tree | 12935e95a6e642bb9f834d2cb61af1bee63ac49f /test/LLVMC/C++/hello.cpp | |
parent | 5110609ceb901f20e1d8b38530e09f9e9017386c (diff) | |
download | external_llvm-fbc18f839c8dcae38e73ae12bee9d34a416d2fcd.zip external_llvm-fbc18f839c8dcae38e73ae12bee9d34a416d2fcd.tar.gz external_llvm-fbc18f839c8dcae38e73ae12bee9d34a416d2fcd.tar.bz2 |
tests: Use %abs_tmp instead of ./%t to make these tests portable to 'lit'.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81663 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/LLVMC/C++/hello.cpp')
-rw-r--r-- | test/LLVMC/C++/hello.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/LLVMC/C++/hello.cpp b/test/LLVMC/C++/hello.cpp index 27c89d6..b9c6399 100644 --- a/test/LLVMC/C++/hello.cpp +++ b/test/LLVMC/C++/hello.cpp @@ -1,6 +1,6 @@ // Test that we can compile C++ code. // RUN: llvmc %s -o %t -// RUN: ./%t | grep hello +// RUN: %abs_tmp | grep hello #include <iostream> int main() { |