diff --git a/test/JNI-88/Makefile b/test/JNI-88/Makefile index 0d32fbe..35d7ec1 100644 --- a/test/JNI-88/Makefile +++ b/test/JNI-88/Makefile @@ -2,7 +2,7 @@ include ../../Makefile.conf include ../Makefile.conf JAVA_CLASSES = \ - JNI-88.class + TestMain.class .PHONY: compile run test clean @@ -10,7 +10,7 @@ all: compile $(MAKE) run run: compile - HOME=$(PWD) CLASSPATH=$(CLASSPATH) time $(VM) JNI-88 + HOME=$(PWD) CLASSPATH=$(CLASSPATH) time $(VM) TestMain compile: $(JAVA_CLASSES) diff --git a/test/JNI-88/JNI-88.java b/test/JNI-88/TestMain.java similarity index 99% rename from test/JNI-88/JNI-88.java rename to test/JNI-88/TestMain.java index 696f6da..6dc62cc 100644 --- a/test/JNI-88/JNI-88.java +++ b/test/JNI-88/TestMain.java @@ -93,7 +93,7 @@ class TestThread extends Thread { } } -class JNI-88 { +class TestMain { public static void main(String[] args) { // Test parameters boolean useSharedEngine = true; diff --git a/test/Makefile b/test/Makefile index 3ee714a..3d87525 100644 --- a/test/Makefile +++ b/test/Makefile @@ -5,11 +5,14 @@ all: compile run: compile $(MAKE) -C Basic run $(MAKE) -C JNI-85 run + $(MAKE) -C JNI-88 run compile: $(MAKE) -C Basic compile $(MAKE) -C JNI-85 compile + $(MAKE) -C JNI-88 compile clean: $(MAKE) -C Basic clean $(MAKE) -C JNI-85 clean + $(MAKE) -C JNI-88 clean