diff options
author | Chris Lattner <sabre@nondot.org> | 2003-06-20 23:01:23 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-06-20 23:01:23 +0000 |
commit | b7009c6cae6cebb9ef51b58095da7f154138ecbe (patch) | |
tree | ad1056a2d4088b9d32704d8ac60a08e8d55b320f | |
parent | a2e89c6f38fca5ac4199c38960fea98a32384b86 (diff) |
Remove obsolete support for LD_LIBRARY_PATH
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6815 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/Feature/Makefile | 4 | ||||
-rwxr-xr-x | test/Feature/TestAsmDisasm.sh | 13 | ||||
-rwxr-xr-x | test/Feature/TestOptimizer.sh | 13 |
3 files changed, 2 insertions, 28 deletions
diff --git a/test/Feature/Makefile b/test/Feature/Makefile index 1b131acc89..b0eeab8b12 100644 --- a/test/Feature/Makefile +++ b/test/Feature/Makefile @@ -24,10 +24,10 @@ testsparc : $(OTESTS:%.ll=%.s) testcbe : $(OTESTS:%.ll=%.tc) Output/%.asmdis: % $(LAS) $(LDIS) Output/.dir - @./TestAsmDisasm.sh $< $(LLVMTOOLCURRENT) $(LLVMLIBCURRENTSOURCE) + @./TestAsmDisasm.sh $< $(LLVMTOOLCURRENT) Output/%.opt: % $(LAS) $(LDIS) $(LOPT) Output/.dir - @./TestOptimizer.sh $< $(LLVMTOOLCURRENT) $(LLVMLIBCURRENTSOURCE) + @./TestOptimizer.sh $< $(LLVMTOOLCURRENT) Output/%.tc: Output/%.bc $(LDIS) @echo "======== Generating C code for $<" diff --git a/test/Feature/TestAsmDisasm.sh b/test/Feature/TestAsmDisasm.sh index a492f8f305..7ef09e67a8 100755 --- a/test/Feature/TestAsmDisasm.sh +++ b/test/Feature/TestAsmDisasm.sh @@ -4,19 +4,6 @@ rm -f test.bc.temp[12] -# -# Split the current LD_LIBRARY_PATH into two separate components. -# -FirstLDP=`echo $LD_LIBRARY_PATH | cut -d\; -f1` -SecondLDP=`echo $LD_LIBRARY_PATH | cut -d\; -f2` - -# -# Now create a new LD_LIBRARY_PATH with our command line options as -# the first section. -# -LD_LIBRARY_PATH="$3:${FirstLDP}\;${SecondLDP}" -export LD_LIBRARY_PATH - AS=$2/as DIS=$2/dis diff --git a/test/Feature/TestOptimizer.sh b/test/Feature/TestOptimizer.sh index 10008ee111..6816169a1d 100755 --- a/test/Feature/TestOptimizer.sh +++ b/test/Feature/TestOptimizer.sh @@ -1,18 +1,5 @@ #!/bin/sh -# -# Split the current LD_LIBRARY_PATH into two separate components. -# -FirstLDP=`echo $LD_LIBRARY_PATH | cut -d\; -f1` -SecondLDP=`echo $LD_LIBRARY_PATH | cut -d\; -f2` - -# -# Now create a new LD_LIBRARY_PATH with our command line options as -# the first section. -# -LD_LIBRARY_PATH="$3:${FirstLDP}\;${SecondLDP}" -export LD_LIBRARY_PATH - AS=$2/as DIS=$2/dis OPT=$2/opt |