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 | 822627f8c5f096260f797da221eacfef44bd63a9 (patch) | |
tree | a4b8b5a29cc799e5e55d624450da45b126b9e4e7 | |
parent | c50d4924eb2e84f5b2d9a39ab828410624f27643 (diff) | |
download | bcm5719-llvm-822627f8c5f096260f797da221eacfef44bd63a9.tar.gz bcm5719-llvm-822627f8c5f096260f797da221eacfef44bd63a9.zip |
Don't use 'touch' in this test; it may be the cause of Windows-related failures.
llvm-svn: 169922
-rw-r--r-- | clang/test/Modules/modify-module.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/Modules/modify-module.m b/clang/test/Modules/modify-module.m index 422d3c3e97c..7ec99068fae 100644 --- a/clang/test/Modules/modify-module.m +++ b/clang/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 |