summaryrefslogtreecommitdiffstats
path: root/test/do_alltests
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgarciasuarez@mandriva.org>2005-11-03 15:13:01 +0000
committerRafael Garcia-Suarez <rgarciasuarez@mandriva.org>2005-11-03 15:13:01 +0000
commit8f8733b1839181f94bb50daaeac1e074bedc1367 (patch)
tree20444cfff7c57e5b6ad61d170b0686f3326781af /test/do_alltests
parentcc2964bd528da6bf92ae85e9591e92fe7ad85be2 (diff)
downloadurpmi-8f8733b1839181f94bb50daaeac1e074bedc1367.tar
urpmi-8f8733b1839181f94bb50daaeac1e074bedc1367.tar.gz
urpmi-8f8733b1839181f94bb50daaeac1e074bedc1367.tar.bz2
urpmi-8f8733b1839181f94bb50daaeac1e074bedc1367.tar.xz
urpmi-8f8733b1839181f94bb50daaeac1e074bedc1367.zip
Cleanup makefiles. Remove obsolete, broken and non-standard test suite.
Diffstat (limited to 'test/do_alltests')
-rwxr-xr-xtest/do_alltests22
1 files changed, 0 insertions, 22 deletions
diff --git a/test/do_alltests b/test/do_alltests
deleted file mode 100755
index 90ef6ae9..00000000
--- a/test/do_alltests
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/bin/sh
-
-LANGUAGE=C
-LANG=C
-export LANGUAGE
-export LANG
-
-for t in *.tar.bz2; do
- rm -rf tmp
- mkdir tmp
- cd tmp
- tar xvfj ../$t
- dir=$(dirname $(find . -name dotest))
- cd $dir
- ./dotest || exit 1
- perl -pi -e 's/.*urpmi called with.*//' urpmi_env.log urpmi_env_correct.log
- diff urpmi_env.log urpmi_env_correct.log || exit 2
- cd -
- cd ..
-done
-
-rm -rf tmp