diff options
| author | Kuba Mracek <mracek@apple.com> | 2017-08-15 19:47:06 +0000 |
|---|---|---|
| committer | Kuba Mracek <mracek@apple.com> | 2017-08-15 19:47:06 +0000 |
| commit | 5b57633a45a5072b4292a98d68eb4ddb4f2b63b6 (patch) | |
| tree | 3c09b2c2ead9c38125e589295068e7a8673deeea /clang/test/Modules/crash-typo-correction-visibility.cpp | |
| parent | 0464c5d958065c571a605f5da3cfd4b729950be7 (diff) | |
| download | bcm5719-llvm-5b57633a45a5072b4292a98d68eb4ddb4f2b63b6.tar.gz bcm5719-llvm-5b57633a45a5072b4292a98d68eb4ddb4f2b63b6.zip | |
[clang] Get rid of "%T" expansions
The %T lit expansion expands to a common directory shared between all the tests in the same directory, which is unexpected and unintuitive, and more importantly, it's been a source of subtle race conditions and flaky tests. In https://reviews.llvm.org/D35396, it was agreed that it would be best to simply ban %T and only keep %t, which is unique to each test. When a test needs a temporary directory, it can just create one using mkdir %t.
This patch removes %T in clang.
Differential Revision: https://reviews.llvm.org/D36437
llvm-svn: 310950
Diffstat (limited to 'clang/test/Modules/crash-typo-correction-visibility.cpp')
| -rw-r--r-- | clang/test/Modules/crash-typo-correction-visibility.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/clang/test/Modules/crash-typo-correction-visibility.cpp b/clang/test/Modules/crash-typo-correction-visibility.cpp index 518293026a6..9f0ed3b7b13 100644 --- a/clang/test/Modules/crash-typo-correction-visibility.cpp +++ b/clang/test/Modules/crash-typo-correction-visibility.cpp @@ -1,5 +1,6 @@ -// RUN: %clang_cc1 -x c++ -std=c++11 -fmodules -fmodule-name=module -o %T/module.pcm -emit-module %S/Inputs/crash-typo-correction-visibility/module.modulemap -// RUN: %clang_cc1 -x c++ -std=c++11 -fmodules -fmodule-file=%T/module.pcm %s -verify +// RUN: mkdir -p %t +// RUN: %clang_cc1 -x c++ -std=c++11 -fmodules -fmodule-name=module -o %t/module.pcm -emit-module %S/Inputs/crash-typo-correction-visibility/module.modulemap +// RUN: %clang_cc1 -x c++ -std=c++11 -fmodules -fmodule-file=%t/module.pcm %s -verify struct S { int member; // expected-note {{declared here}} |

