diff options
| author | Reid Kleckner <rnk@google.com> | 2019-09-10 20:15:45 +0000 |
|---|---|---|
| committer | Reid Kleckner <rnk@google.com> | 2019-09-10 20:15:45 +0000 |
| commit | 38e033bf33e8a8261d1d4497524fe75ef3486a9a (patch) | |
| tree | f0a2e62cb48a59ed71b63feb16a68a8b8174aab2 /clang/test/CodeGen/thinlto_backend.ll | |
| parent | 4d2b4077e7087b1b0476d9b3ef5fbcc7b0149990 (diff) | |
| download | bcm5719-llvm-38e033bf33e8a8261d1d4497524fe75ef3486a9a.tar.gz bcm5719-llvm-38e033bf33e8a8261d1d4497524fe75ef3486a9a.zip | |
Re-land Remove REQUIRES:shell from tests that pass for me on Windows
This reverts r371497 (git commit 3d7e9ab7b9f8c53aa41420c54970f0fb421004a2)
Reorder `not` with `env` in these two tests so they pass:
Driver/rewrite-map-in-diagnostics.c
Index/crash-recovery-modules.m.
This will not be necessary after D66531 lands.
llvm-svn: 371552
Diffstat (limited to 'clang/test/CodeGen/thinlto_backend.ll')
| -rw-r--r-- | clang/test/CodeGen/thinlto_backend.ll | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/clang/test/CodeGen/thinlto_backend.ll b/clang/test/CodeGen/thinlto_backend.ll index 2dd919d5f7d..fcfc7ea4665 100644 --- a/clang/test/CodeGen/thinlto_backend.ll +++ b/clang/test/CodeGen/thinlto_backend.ll @@ -1,5 +1,4 @@ -; shell required since the windows bot does not like the "(cd ..." -; REQUIRES: x86-registered-target, shell +; REQUIRES: x86-registered-target ; RUN: opt -module-summary -o %t1.o %s ; RUN: opt -module-summary -o %t2.o %S/Inputs/thinlto_backend.ll @@ -32,10 +31,14 @@ ; RUN: %clang -target x86_64-unknown-linux-gnu -O2 -o %t3.o -x ir %t1.o -c -fthinlto-index=%t.thinlto.bc -save-temps=obj ; RUN: llvm-dis %t1.s.3.import.bc -o - | FileCheck --check-prefix=CHECK-IMPORT %s ; RUN: mkdir -p %T/dir1 -; RUN: (cd %T/dir1 && %clang -target x86_64-unknown-linux-gnu -O2 -o %t3.o -x ir %t1.o -c -fthinlto-index=%t.thinlto.bc -save-temps=cwd) +; RUN: cd %T/dir1 +; RUN: %clang -target x86_64-unknown-linux-gnu -O2 -o %t3.o -x ir %t1.o -c -fthinlto-index=%t.thinlto.bc -save-temps=cwd +; RUN: cd ../.. ; RUN: llvm-dis %T/dir1/*1.s.3.import.bc -o - | FileCheck --check-prefix=CHECK-IMPORT %s ; RUN: mkdir -p %T/dir2 -; RUN: (cd %T/dir2 && %clang -target x86_64-unknown-linux-gnu -O2 -o %t3.o -x ir %t1.o -c -fthinlto-index=%t.thinlto.bc -save-temps) +; RUN: cd %T/dir2 +; RUN: %clang -target x86_64-unknown-linux-gnu -O2 -o %t3.o -x ir %t1.o -c -fthinlto-index=%t.thinlto.bc -save-temps +; RUN: cd ../.. ; RUN: llvm-dis %T/dir2/*1.s.3.import.bc -o - | FileCheck --check-prefix=CHECK-IMPORT %s ; CHECK-IMPORT: define available_externally void @f2() ; RUN: llvm-nm %t3.o | FileCheck --check-prefix=CHECK-OBJ %s |

