]> granicus.if.org Git - llvm/commitdiff
llvm-reduce: Use %python from lit to get the correct/valid python binary for the...
authorDavid Blaikie <dblaikie@gmail.com>
Thu, 5 Sep 2019 23:33:44 +0000 (23:33 +0000)
committerDavid Blaikie <dblaikie@gmail.com>
Thu, 5 Sep 2019 23:33:44 +0000 (23:33 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@371143 91177308-0d34-0410-b5e6-96231b3b80d8

test/Reduce/Inputs/remove-funcs.py
test/Reduce/remove-funcs.ll
test/Reduce/remove-global-vars.ll

index dc0203ce515eb57e4b2d497c7a99ddde3fd3d334..1d726c4e9ee750dbc867877357ac515b10bd6dad 100755 (executable)
@@ -1,4 +1,3 @@
-#!/usr/bin/env python
 
 import sys
 
index 5a9c48c7485c095d01049b87b1d5bc71566c4fc9..301b1941910880b766a33a3b5222ff8be22280ee 100644 (file)
@@ -1,8 +1,17 @@
 ; Test that llvm-reduce can remove uninteresting functions as well as
 ; their InstCalls.
 ;
-; RUN: llvm-reduce --test %p/Inputs/remove-funcs.py %s -o - | FileCheck %s
-; REQUIRES: plugins, shell
+; RUN: rm -rf %t
+; RUN: mkdir %t
+; copy the test file to preserve executable bit
+; RUN: cp %p/Inputs/remove-funcs.py %t/test.py
+; get the python path from lit
+; RUN: echo "#!" %python > %t/test.py
+; then include the rest of the test script
+; RUN: cat %p/Inputs/remove-funcs.py >> %t/test.py
+
+; RUN: llvm-reduce --test %t/test.py %s -o - | FileCheck %s
+; REQUIRES: plugins
 
 ; CHECK-NOT: uninteresting1()
 define i32 @uninteresting1() {
index 956fd5804524b2bb514f424a055b889ff4d30a45..8588de52b4cddaf0e302b999e419dcfa494a9515 100644 (file)
@@ -1,7 +1,16 @@
 ; Test that llvm-reduce can remove uninteresting Global Variables as well as
 ; their direct uses (which in turn are replaced with 'undef').
 ;
-; RUN: llvm-reduce --test %p/Inputs/remove-global-vars.py %s -o - | FileCheck %s
+; RUN: rm -rf %t
+; RUN: mkdir %t
+; copy the test file to preserve executable bit
+; RUN: cp %p/Inputs/remove-global-vars.py %t/test.py
+; get the python path from lit
+; RUN: echo "#!" %python > %t/test.py
+; then include the rest of the test script
+; RUN: cat %p/Inputs/remove-global-vars.py >> %t/test.py
+
+; RUN: llvm-reduce --test %t/test.py %s -o - | FileCheck %s
 ; REQUIRES: plugins
 
 ; CHECK: @interesting = global