Browse Source

Helper script for running a single test.

Change-Id: I777c752e31546d388d7a6940fb95ef4b9369aeb2
Reviewed-on: http://gerrit.dmdirc.com/279
Tested-by: Shane Mc Cormack <shane@dmdirc.com>
Reviewed-by: Gregory Holmes <greboid@dmdirc.com>
tags/0.6.3b1
Shane Mc Cormack 14 years ago
parent
commit
6f991e9663
1 changed files with 7 additions and 0 deletions
  1. 7
    0
      test-single.sh

+ 7
- 0
test-single.sh View File

@@ -0,0 +1,7 @@
1
+#!/bin/sh
2
+if [ "" = "${1}" ]; then
3
+	echo "Usage: ${0} <test file name>"
4
+	echo "Example: ${0} **/plugins/PluginInfoTest.java"
5
+	exit 1
6
+fi;
7
+ant -Djavac.includes=${1} -Dtest.includes=${1} test-single

Loading…
Cancel
Save