summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2010-02-17 21:26:02 +0000
committerPaul Phillips <paulp@improving.org>2010-02-17 21:26:02 +0000
commit0e439d6d308e54af6d97853b4ef55f20b77c98e1 (patch)
tree32ad53e626071096ae4416f565679aae13ccabfa /tools
parent09816ef0d354e8567c830433f24b2da4a03010a0 (diff)
downloadscala-0e439d6d308e54af6d97853b4ef55f20b77c98e1.tar.gz
scala-0e439d6d308e54af6d97853b4ef55f20b77c98e1.tar.bz2
scala-0e439d6d308e54af6d97853b4ef55f20b77c98e1.zip
A variety of changes to partest made in a quest...
A variety of changes to partest made in a quest to get it to reveal the classpaths it is using. No longer will partest actively sabotage your efforts to pass -Dpartest.debug=true by inserting "-Dpartest.debug=" after yours! And etc. Review by haller (if so inclined.)
Diffstat (limited to 'tools')
-rwxr-xr-xtools/quickcp5
-rwxr-xr-xtools/strapcp5
2 files changed, 8 insertions, 2 deletions
diff --git a/tools/quickcp b/tools/quickcp
index 9d7ff8dfb0..0bfcad1941 100755
--- a/tools/quickcp
+++ b/tools/quickcp
@@ -2,4 +2,7 @@
#
THISDIR=`dirname $0`
-${THISDIR}/cpof ${THISDIR}/../build/quick/classes
+cp=`${THISDIR}/cpof ${THISDIR}/../build/quick/classes`
+fjbg=`${THISDIR}/abspath ${THISDIR}/../lib/fjbg.jar`
+
+echo ${cp}:${fjbg}
diff --git a/tools/strapcp b/tools/strapcp
index 87e6ef720e..61e4a61b2c 100755
--- a/tools/strapcp
+++ b/tools/strapcp
@@ -2,4 +2,7 @@
#
THISDIR=`dirname $0`
-${THISDIR}/cpof ${THISDIR}/../build/strap/classes
+cp=`${THISDIR}/cpof ${THISDIR}/../build/strap/classes`
+fjbg=`${THISDIR}/abspath ${THISDIR}/../lib/fjbg.jar`
+
+echo ${cp}:${fjbg}