summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorGilles Dubochet <gilles.dubochet@epfl.ch>2005-11-01 12:53:07 +0000
committerGilles Dubochet <gilles.dubochet@epfl.ch>2005-11-01 12:53:07 +0000
commit7a65551686197695ffcbd5638071b274916e512b (patch)
treed3eda76bdeeb6d56e6682afc3ebcf0d418a67a80 /test
parent9e8ee50e5e86901290eb9b8505a0bc4d06ba0ffc (diff)
downloadscala-7a65551686197695ffcbd5638071b274916e512b.tar.gz
scala-7a65551686197695ffcbd5638071b274916e512b.tar.bz2
scala-7a65551686197695ffcbd5638071b274916e512b.zip
This file is obsolete and has been replaced wit...
This file is obsolete and has been replaced with scalatest in bin.
Diffstat (limited to 'test')
-rwxr-xr-xtest/bin/scala-test45
1 files changed, 0 insertions, 45 deletions
diff --git a/test/bin/scala-test b/test/bin/scala-test
deleted file mode 100755
index d80b3223f5..0000000000
--- a/test/bin/scala-test
+++ /dev/null
@@ -1,45 +0,0 @@
-#!/bin/sh
-
-##############################################################################
-# test script for scala tools
-##############################################################################
-
-# $Id$
-
-##############################################################################
-# define prefix and script
-
-SOURCE="$0";
-while [ -h "$SOURCE" ]; do
- LOOKUP="`ls -ld "$SOURCE"`";
- TARGET="`expr "$LOOKUP" : '.*-> \(.*\)$'`";
- if expr "${TARGET:-.}/" : '/.*/$' > /dev/null; then
- SOURCE="${TARGET:-.}";
- else
- SOURCE="`dirname "$SOURCE"`/${TARGET:-.}";
- fi;
-done;
-PREFIX=`dirname "$SOURCE"`;
-case "$PREFIX" in
- bin | */bin ) PREFIX=`dirname "$PREFIX"`;;
- * ) PREFIX=`cd "$PREFIX/.."; pwd`;
-esac
-SCRIPT="`basename $SOURCE`";
-
-##############################################################################
-# flow control functions
-
-abort() {
- echo "$0: $1" 1>&2;
- exit 1;
-}
-
-##############################################################################
-
-case "$PREFIX" in
- . ) dirname="..";;
- * ) dirname=`dirname "$PREFIX"`;;
-esac
-abort "this script has been replaced by $dirname/bin/scalatest";
-
-##############################################################################