|
Last change
on this file was 348, checked in by dmik, 14 years ago |
|
vendor: Add icedtea-web v1.1.2 to current.
|
-
Property svn:executable
set to
*
|
|
File size:
390 bytes
|
| Line | |
|---|
| 1 | #!/bin/sh
|
|---|
| 2 |
|
|---|
| 3 | # change to dir with tests
|
|---|
| 4 | cd `dirname $0`
|
|---|
| 5 |
|
|---|
| 6 | JAVAC=javac
|
|---|
| 7 | JAR=jar
|
|---|
| 8 |
|
|---|
| 9 | if [ ! -z $JAVA_HOME ]; then
|
|---|
| 10 | JAVAC=$JAVA_HOME/bin/javac
|
|---|
| 11 | JAVAC=$JAVA_HOME/bin/jar
|
|---|
| 12 | fi
|
|---|
| 13 |
|
|---|
| 14 | $JAVAC PluginTest.java DummyObject.java OverloadTestHelper*java
|
|---|
| 15 | $JAR cf PluginTest.jar PluginTest.class DummyObject.class OverloadTestHelper*class
|
|---|
| 16 | rm -f *class
|
|---|
| 17 |
|
|---|
| 18 | echo "Done. Now launch \"firefox file://`pwd`/index.html\""
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.