diff options
Diffstat (limited to 'tests/Makefile')
-rw-r--r-- | tests/Makefile | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/tests/Makefile b/tests/Makefile index d8a6e8e..b313a50 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -4,7 +4,7 @@ include ../java.mk # in this file you can change your java compiler and VM IVYPATH=../build/jar/ivy-java.jar -CLASSPATH=-classpath classes:$(IVYPATH):$(GNUPATH) +CLASSPATH=-classpath ../build/testclasses:$(IVYPATH):$(GNUPATH) SRC = *.java # Warning TestNetSwing.java cant build with jdk1.1 @@ -26,7 +26,7 @@ all: $(JAVAC) -d classes $(JAVACOPTS) $(CLASSPATH) $(SRC) @echo "all modules built. run make run" -run: sendnow sendnowself nl api unitaires probe stop request test1 async test2 +run: sendnow sendnowself nl api filter unitaires probe stop request test1 async test2 request: @echo "*****************************" @@ -120,6 +120,16 @@ unitaires: @echo "*****************************" @echo "\n\n\n" +filter: + @echo "*****************************" + @echo "TEST FILTER MESSAGES" + @echo "*****************************" + $(JAVA) $(DEBUG) $(JAVAOPTS) $(CLASSPATH) Filter $(DOMAIN) + @echo "*****************************" + @echo "TEST FILTER SUCCESSFUL" + @echo "*****************************" + @echo "\n\n\n" + test1: $(OBJ) @echo "*****************************" @echo "TEST Bench" |