diff options
author | James Henderson <jh7370@my.bristol.ac.uk> | 2019-09-10 08:48:33 +0000 |
---|---|---|
committer | James Henderson <jh7370@my.bristol.ac.uk> | 2019-09-10 08:48:33 +0000 |
commit | 3d7e9ab7b9f8c53aa41420c54970f0fb421004a2 (patch) | |
tree | 414bc05ed871c3771add9185be65125744fa28c0 /clang/test/Modules | |
parent | 93c4d53b0a5751bbaae747879bcdb4a5413b52fb (diff) | |
download | bcm5719-llvm-3d7e9ab7b9f8c53aa41420c54970f0fb421004a2.tar.gz bcm5719-llvm-3d7e9ab7b9f8c53aa41420c54970f0fb421004a2.zip |
Revert Remove REQUIRES:shell from tests that pass for me on Windows
This reverts r371478 (git commit a9980f60ce083fa6d5fd03c12c58ca0b293e3d60)
llvm-svn: 371497
Diffstat (limited to 'clang/test/Modules')
-rw-r--r-- | clang/test/Modules/at-import-in-framework-header.m | 2 | ||||
-rw-r--r-- | clang/test/Modules/builtins.m | 1 | ||||
-rw-r--r-- | clang/test/Modules/dependency-dump-dependent-module.m | 2 | ||||
-rw-r--r-- | clang/test/Modules/dependency-dump.m | 2 | ||||
-rw-r--r-- | clang/test/Modules/implicit-invalidate-common.c | 1 |
5 files changed, 8 insertions, 0 deletions
diff --git a/clang/test/Modules/at-import-in-framework-header.m b/clang/test/Modules/at-import-in-framework-header.m index 043c69462ed..fe366381207 100644 --- a/clang/test/Modules/at-import-in-framework-header.m +++ b/clang/test/Modules/at-import-in-framework-header.m @@ -1,3 +1,5 @@ +// REQUIRES: shell + // RUN: rm -rf %t // RUN: mkdir %t diff --git a/clang/test/Modules/builtins.m b/clang/test/Modules/builtins.m index 2480e6379cc..88a44e7b0aa 100644 --- a/clang/test/Modules/builtins.m +++ b/clang/test/Modules/builtins.m @@ -8,6 +8,7 @@ // RUN: %clang_cc1 -fmodules-cache-path=%t.pch.cache -fmodules -fimplicit-module-maps -I %S/Inputs %s -include-pch %t.pch %s -verify // expected-no-diagnostics +// REQUIRES: shell void use_constant_string_builtins1(void) { (void)__builtin___CFStringMakeConstantString(""); diff --git a/clang/test/Modules/dependency-dump-dependent-module.m b/clang/test/Modules/dependency-dump-dependent-module.m index 2430726d3ae..49069861654 100644 --- a/clang/test/Modules/dependency-dump-dependent-module.m +++ b/clang/test/Modules/dependency-dump-dependent-module.m @@ -1,6 +1,8 @@ // When a module depends on another, check that we dump the dependency header // files for both. +// REQUIRES: shell + // RUN: rm -rf %t // RUN: %clang_cc1 -fmodules -fimplicit-module-maps -fmodules-cache-path=%t/cache -module-dependency-dir %t/vfs -F %S/Inputs -I %S/Inputs -verify %s // expected-no-diagnostics diff --git a/clang/test/Modules/dependency-dump.m b/clang/test/Modules/dependency-dump.m index f3a487544b8..deb66188e14 100644 --- a/clang/test/Modules/dependency-dump.m +++ b/clang/test/Modules/dependency-dump.m @@ -1,6 +1,8 @@ // Check that we can dump all of the headers a module depends on, and a VFS map // for the same. +// REQUIRES: shell + // RUN: rm -rf %t // RUN: %clang_cc1 -fmodules -fimplicit-module-maps -fmodules-cache-path=%t/cache -module-dependency-dir %t/vfs -F %S/Inputs -I %S/Inputs -verify %s // expected-no-diagnostics diff --git a/clang/test/Modules/implicit-invalidate-common.c b/clang/test/Modules/implicit-invalidate-common.c index 143a00ff37a..d6cf90e12dc 100644 --- a/clang/test/Modules/implicit-invalidate-common.c +++ b/clang/test/Modules/implicit-invalidate-common.c @@ -1,3 +1,4 @@ +// REQUIRES: shell // RUN: rm -rf %t // RUN: mkdir -p %t/implicit-invalidate-common // RUN: cp -r %S/Inputs/implicit-invalidate-common %t/ |