diff options
author | Douglas Gregor <dgregor@apple.com> | 2013-03-25 21:52:42 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2013-03-25 21:52:42 +0000 |
commit | e91544210a59c53ad8e49d0008a969682579814e (patch) | |
tree | 2bd00bb540a9cebdf50a7dbbc348e32ee99ffa06 /test/Modules | |
parent | 87ab066c70006d998a6d358d272e00c8345b0f26 (diff) |
Remove local path from test.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@177925 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Modules')
-rw-r--r-- | test/Modules/prune.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Modules/prune.m b/test/Modules/prune.m index c4018f9657..8af7e6c395 100644 --- a/test/Modules/prune.m +++ b/test/Modules/prune.m @@ -28,7 +28,7 @@ // Set the DependsOnModule access time back more than four days. // This shouldn't prune anything, because the timestamp has been updated, so // the pruning mechanism won't fire. -// RUN: find /Volumes/Data/dgregor/Projects/llvm-build-xcode/tools/clang/test/Modules/Output/prune.m.tmp -name DependsOnModule.pcm | xargs touch -a -t 201101010000 +// RUN: find %t -name DependsOnModule.pcm | xargs touch -a -t 201101010000 // RUN: %clang_cc1 -fmodules -F %S/Inputs -fmodules-cache-path=%t -fmodules -fmodules-prune-interval=172800 -fmodules-prune-after=345600 %s -verify // RUN: ls %t | grep modules.timestamp // RUN: ls -R %t | grep ^Module.pcm @@ -37,7 +37,7 @@ // Set both timestamp and DependsOnModule.pcm back beyond the cutoff. // This should trigger pruning, which will remove DependsOnModule but not Module. // RUN: touch -m -a -t 201101010000 %t/modules.timestamp -// RUN: find /Volumes/Data/dgregor/Projects/llvm-build-xcode/tools/clang/test/Modules/Output/prune.m.tmp -name DependsOnModule.pcm | xargs touch -a -t 201101010000 +// RUN: find %t -name DependsOnModule.pcm | xargs touch -a -t 201101010000 // RUN: %clang_cc1 -fmodules -F %S/Inputs -fmodules-cache-path=%t -fmodules -fmodules-prune-interval=172800 -fmodules-prune-after=345600 %s -verify // RUN: ls %t | grep modules.timestamp // RUN: ls -R %t | grep ^Module.pcm |