diff options
author | jestin | 2012-05-13 08:54:38 +0000 |
---|---|---|
committer | jestin | 2012-05-13 08:54:38 +0000 |
commit | e854a58a81ec90e419a4b3effa5a83caac05df90 (patch) | |
tree | 16eb84a66b62ff38e744c8cd474df81561436b9f /tests/Makefile | |
parent | 4ffe8b84071babe544086f94c66431380d301d59 (diff) | |
download | ivy-java-e854a58a81ec90e419a4b3effa5a83caac05df90.zip ivy-java-e854a58a81ec90e419a4b3effa5a83caac05df90.tar.gz ivy-java-e854a58a81ec90e419a4b3effa5a83caac05df90.tar.bz2 ivy-java-e854a58a81ec90e419a4b3effa5a83caac05df90.tar.xz |
Modified the tests to remove bus.getDomain(null)
make Waiter and WaiterClient sons of WaitFor
Added a few tests into svn
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" |