[llvm] r371764 - llvm-reduce: For now, mark these tests as requiring a shell

David Blaikie via llvm-commits llvm-commits at lists.llvm.org
Thu Sep 12 12:50:54 PDT 2019


Author: dblaikie
Date: Thu Sep 12 12:50:54 2019
New Revision: 371764

URL: http://llvm.org/viewvc/llvm-project?rev=371764&view=rev
Log:
llvm-reduce: For now, mark these tests as requiring a shell

(since they execute shell scripts/that's the only entry point at the
moment)

Modified:
    llvm/trunk/test/Reduce/remove-args.ll
    llvm/trunk/test/Reduce/remove-funcs.ll
    llvm/trunk/test/Reduce/remove-global-vars.ll
    llvm/trunk/test/Reduce/remove-metadata.ll

Modified: llvm/trunk/test/Reduce/remove-args.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Reduce/remove-args.ll?rev=371764&r1=371763&r2=371764&view=diff
==============================================================================
--- llvm/trunk/test/Reduce/remove-args.ll (original)
+++ llvm/trunk/test/Reduce/remove-args.ll Thu Sep 12 12:50:54 2019
@@ -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) {

Modified: llvm/trunk/test/Reduce/remove-funcs.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Reduce/remove-funcs.ll?rev=371764&r1=371763&r2=371764&view=diff
==============================================================================
--- llvm/trunk/test/Reduce/remove-funcs.ll (original)
+++ llvm/trunk/test/Reduce/remove-funcs.ll Thu Sep 12 12:50:54 2019
@@ -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:

Modified: llvm/trunk/test/Reduce/remove-global-vars.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Reduce/remove-global-vars.ll?rev=371764&r1=371763&r2=371764&view=diff
==============================================================================
--- llvm/trunk/test/Reduce/remove-global-vars.ll (original)
+++ llvm/trunk/test/Reduce/remove-global-vars.ll Thu Sep 12 12:50:54 2019
@@ -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

Modified: llvm/trunk/test/Reduce/remove-metadata.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Reduce/remove-metadata.ll?rev=371764&r1=371763&r2=371764&view=diff
==============================================================================
--- llvm/trunk/test/Reduce/remove-metadata.ll (original)
+++ llvm/trunk/test/Reduce/remove-metadata.ll Thu Sep 12 12:50:54 2019
@@ -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
 




More information about the llvm-commits mailing list