Skip to content

Commit

Permalink
llvm-reduce: For now, mark these tests as requiring a shell
Browse files Browse the repository at this point in the history
(since they execute shell scripts/that's the only entry point at the
moment)

llvm-svn: 371764
  • Loading branch information
dwblaikie committed Sep 12, 2019
1 parent 31a1ea1 commit 6be90ac
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions llvm/test/Reduce/remove-args.ll
Expand Up @@ -11,6 +11,7 @@

; RUN: llvm-reduce --test %t/test.py %s -o %t/out.ll
; RUN: cat %t/out.ll | FileCheck -implicit-check-not=uninteresting %s
; REQUIRES: shell

; CHECK: @interesting(i32 %interesting)
define void @interesting(i32 %uninteresting1, i32 %interesting, i32 %uninteresting2) {
Expand Down
1 change: 1 addition & 0 deletions llvm/test/Reduce/remove-funcs.ll
Expand Up @@ -12,6 +12,7 @@

; RUN: llvm-reduce --test %t/test.py %s -o %t/out.ll
; RUN: cat %t/out.ll | FileCheck -implicit-check-not=uninteresting %s
; REQUIRES: shell

define i32 @uninteresting1() {
entry:
Expand Down
1 change: 1 addition & 0 deletions llvm/test/Reduce/remove-global-vars.ll
Expand Up @@ -12,6 +12,7 @@

; RUN: llvm-reduce --test %t/test.py %s -o %t/out.ll
; RUN: cat %t/out.ll | FileCheck -implicit-check-not=uninteresting %s
; REQUIRES: shell

; CHECK: @interesting = global
@interesting = global i32 0, align 4
Expand Down
1 change: 1 addition & 0 deletions llvm/test/Reduce/remove-metadata.ll
Expand Up @@ -12,6 +12,7 @@

; RUN: llvm-reduce --test %t/test.py %s -o %t/out.ll
; RUN: cat %t/out.ll | FileCheck -implicit-check-not=! %s
; REQUIRES: shell

@global = global i32 0, !dbg !0

Expand Down

0 comments on commit 6be90ac

Please sign in to comment.