move extra tests (not run as part of "make test") into "extra" package

This commit is contained in:
Joel Dice 2009-05-16 02:01:32 -06:00
parent 06fd492b1a
commit 6dc6f01359
5 changed files with 9 additions and 1 deletions

View File

@ -299,7 +299,7 @@ classpath-classes = \
classpath-object = $(native-build)/classpath-jar.o
classpath-dep = $(classpath-build)/dep
test-sources = $(wildcard $(test)/*.java)
test-sources = $(shell find $(test) -name '*.java')
test-classes = $(call java-classes,$(test-sources),$(test),$(test-build))
test-dep = $(test-build)/dep

View File

@ -1,3 +1,5 @@
package extra;
import java.util.Collection;
import java.util.Comparator;
import java.util.HashMap;

View File

@ -1,3 +1,5 @@
package extra;
import java.lang.Runtime;
import java.lang.Process;

View File

@ -1,3 +1,5 @@
package extra;
import java.net.InetSocketAddress;
import java.nio.ByteBuffer;
import java.io.IOException;

View File

@ -1,3 +1,5 @@
package extra;
import java.net.InetSocketAddress;
import java.nio.ByteBuffer;
import java.nio.channels.SelectionKey;