summarylogtreecommitdiffstats
path: root/jpf
diff options
context:
space:
mode:
Diffstat (limited to 'jpf')
-rw-r--r--jpf13
1 files changed, 13 insertions, 0 deletions
diff --git a/jpf b/jpf
new file mode 100644
index 000000000000..d4375aba2050
--- /dev/null
+++ b/jpf
@@ -0,0 +1,13 @@
+#!/bin/bash
+#
+# unix shell script to run jpf
+#
+
+JPF_HOME=/usr/share/java/jpf
+
+if test -z "$JVM_FLAGS"; then
+ JVM_FLAGS="-Xmx1024m -ea"
+fi
+
+java $JVM_FLAGS -jar "$JPF_HOME/RunJPF.jar" "$@"
+