diff options
author | Douglas Gregor <dgregor@apple.com> | 2012-12-11 22:25:26 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2012-12-11 22:25:26 +0000 |
commit | 299c22f806d0127b58f5cc53ce4ac14ccb21b209 (patch) | |
tree | d205a12cb5d9397e57819950952417bd75edb51e | |
parent | 1b257afbae854c6817f26b7d61c4fed8ff7aebad (diff) |
Don't use 'touch' in this test; it may be the cause of Windows-related failures.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@169922 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/Modules/modify-module.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Modules/modify-module.m b/test/Modules/modify-module.m index 422d3c3e97..7ec99068fa 100644 --- a/test/Modules/modify-module.m +++ b/test/Modules/modify-module.m @@ -8,7 +8,7 @@ // RUN: cp %S/Inputs/Modified/module.map %t/include // RUN: %clang_cc1 -fmodule-cache-path %t/cache -fmodules -I %t/include %s -verify // expected-no-diagnostics -// RUN: touch %t/include/B.h +// RUN: echo '' >> %t/include/B.h // RUN: %clang_cc1 -fmodule-cache-path %t/cache -fmodules -I %t/include %s -verify // RUN: echo 'int getA(); int getA2();' > %t/include/A.h // RUN: %clang_cc1 -fmodule-cache-path %t/cache -fmodules -I %t/include %s -verify |