summaryrefslogtreecommitdiff
path: root/test/system/run_java_test
diff options
context:
space:
mode:
Diffstat (limited to 'test/system/run_java_test')
-rwxr-xr-xtest/system/run_java_test14
1 files changed, 0 insertions, 14 deletions
diff --git a/test/system/run_java_test b/test/system/run_java_test
deleted file mode 100755
index 24947d523..000000000
--- a/test/system/run_java_test
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/bin/bash
-#
-# run_java_test
-# Morgan Deters, September 2011
-#
-# The purpose of this script is to change an automake test command
-# line into something that a JVM likes. In particular, any dir/Foo.class
-# listed on the command line is stripped of its dir/ and its .class extension.
-# Works only for tests in the default package.
-#
-args=("$@")
-args[$((${#args}))]="$(echo "${args[${#args}]}" | sed 's,\(.*/\)*\(.*\)\.class$,\2,')"
-echo "${args[@]}"
-exec "${args[@]}"
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback