aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlandley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277>2005-09-20 14:09:57 +0000
committerlandley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277>2005-09-20 14:09:57 +0000
commitccbc974c6ebf495fb3ca8a87eecdcaaedad9103f (patch)
tree40d2cef71b33ce33551a27387ddfbe0e9aca3a29
parentd4dd02c7e72906754c9afcf708fdb472ca4c685c (diff)
downloadbusybox-w32-ccbc974c6ebf495fb3ca8a87eecdcaaedad9103f.tar.gz
busybox-w32-ccbc974c6ebf495fb3ca8a87eecdcaaedad9103f.tar.bz2
busybox-w32-ccbc974c6ebf495fb3ca8a87eecdcaaedad9103f.zip
The testsuite/links directory wasn't being created.
git-svn-id: svn://busybox.net/trunk/busybox@11510 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r--Makefile4
-rwxr-xr-xtestsuite/runtest1
2 files changed, 3 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index bf2c1d160..ac6095143 100644
--- a/Makefile
+++ b/Makefile
@@ -256,8 +256,8 @@ clean:
256 docs/busybox pod2htm* *.gdb *.elf *~ core .*config.log \ 256 docs/busybox pod2htm* *.gdb *.elf *~ core .*config.log \
257 docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html \ 257 docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html \
258 docs/busybox.net/BusyBox.html busybox.links libbb/loop.h \ 258 docs/busybox.net/BusyBox.html busybox.links libbb/loop.h \
259 .config.old busybox testsuite/links/* 259 .config.old busybox
260 - rm -rf _install 260 - rm -rf _install testsuite/links
261 - find . -name .\*.flags -exec rm -f {} \; 261 - find . -name .\*.flags -exec rm -f {} \;
262 - find . -name \*.o -exec rm -f {} \; 262 - find . -name \*.o -exec rm -f {} \;
263 - find . -name \*.a -exec rm -f {} \; 263 - find . -name \*.a -exec rm -f {} \;
diff --git a/testsuite/runtest b/testsuite/runtest
index 6a0dc9d3e..6e43fce8e 100755
--- a/testsuite/runtest
+++ b/testsuite/runtest
@@ -100,6 +100,7 @@ for applet in $applets; do
100 applet=`echo "$applet" | sed -n 's/\.tests$//p'` 100 applet=`echo "$applet" | sed -n 's/\.tests$//p'`
101 if [ ${#applet} != 0 ] 101 if [ ${#applet} != 0 ]
102 then 102 then
103 mkdir links 2>/dev/null
103 rm -f links/"$applet" 104 rm -f links/"$applet"
104 ln -s ../../busybox links/"$applet" 105 ln -s ../../busybox links/"$applet"
105 PATH=links:$PATH ./"$applet".tests 106 PATH=links:$PATH ./"$applet".tests