remove old test
diff --git a/src/share/classes/javax/activation/tests/Bug6456395.java b/src/share/classes/javax/activation/tests/Bug6456395.java
deleted file mode 100644
index 29c6ea5..0000000
--- a/src/share/classes/javax/activation/tests/Bug6456395.java
+++ /dev/null
@@ -1,43 +0,0 @@
-package demo;
-
-import java.util.Arrays;
-import java.io.ByteArrayOutputStream;
-import javax.activation.DataHandler;
-
-public class Bug6456395 {
-
-    public static void main(String args[]) throws Exception {
-	Bug6456395 bug = new Bug6456395();
-	
-	if(args.length != 0) {
-	    System.out.println("usage: Bug6456395");
-	    System.exit(1);
-	}
-        String whatisyourname = "como se llama ?";	
-        byte[] hello = new byte[] {'h','o','l','a'};
-	bug.test(whatisyourname);
-        bug.test(hello);
-    }
-
-    private void test(String obj) throws Exception {
-        DataHandler dh = new DataHandler(obj, "espanol/foo");
-        ByteArrayOutputStream bos = new ByteArrayOutputStream();
-        dh.writeTo(bos);
-        if (obj.equals(bos.toString()))
-	    System.out.println(
-                "Test Passed for String Object and Unknown MimeType");
-        else System.out.println(
-            "Test Failed for String Object and Unknown MimeType");
-    }
-
-    private void test(byte[] obj) throws Exception {
-        DataHandler dh = new DataHandler(obj, "espanol/foo");
-        ByteArrayOutputStream bos = new ByteArrayOutputStream();
-        dh.writeTo(bos);
-        if (Arrays.equals((byte[])obj, bos.toByteArray()))
-            System.out.println(
-                "Test Passed for Byte array Object and Unknown MimeType");
-        else System.out.println(
-            "Test Failed for Byte array Object and Unknown MimeType");            
-    }
-}
diff --git a/src/share/classes/javax/activation/tests/readme.txt b/src/share/classes/javax/activation/tests/readme.txt
deleted file mode 100644
index 676e5b6..0000000
--- a/src/share/classes/javax/activation/tests/readme.txt
+++ /dev/null
@@ -1,13 +0,0 @@
-# Compile and run the test in the present directory: 
-# It is assumed that JAF sources have been compiled and activation.jar formed. 
-# Replace the jar location with the one you have elsewhere in case activation.jar 
-# has been generated/downloaded by any other means.
-
-# Compile
-% javac -d  . -cp ../../../../../../build/solaris/activation.jar Bug6456395.java
-
-# Run
-% java  -cp ../../../../../../build/solaris/activation.jar:. demo.Bug6456395
-Test Passed for String Object and Unknown MimeType
-Test Passed for Byte array Object and Unknown MimeType
-