aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-06-20 23:01:23 +0000
committerChris Lattner <sabre@nondot.org>2003-06-20 23:01:23 +0000
commitb7009c6cae6cebb9ef51b58095da7f154138ecbe (patch)
treead1056a2d4088b9d32704d8ac60a08e8d55b320f
parenta2e89c6f38fca5ac4199c38960fea98a32384b86 (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/Makefile4
-rwxr-xr-xtest/Feature/TestAsmDisasm.sh13
-rwxr-xr-xtest/Feature/TestOptimizer.sh13
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