r206203 - Fix find command in test/Modules/prune.m broken by r206201
Ben Langmuir
blangmuir at apple.com
Mon Apr 14 11:50:28 PDT 2014
Author: benlangmuir
Date: Mon Apr 14 13:50:28 2014
New Revision: 206203
URL: http://llvm.org/viewvc/llvm-project?rev=206203&view=rev
Log:
Fix find command in test/Modules/prune.m broken by r206201
Modified:
cfe/trunk/test/Modules/prune.m
Modified: cfe/trunk/test/Modules/prune.m
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Modules/prune.m?rev=206203&r1=206202&r2=206203&view=diff
==============================================================================
--- cfe/trunk/test/Modules/prune.m (original)
+++ cfe/trunk/test/Modules/prune.m Mon Apr 14 13:50:28 2014
@@ -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 %t -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
More information about the cfe-commits
mailing list