diff --git a/test/build.xml b/test/build.xml
index 0ebe61fdf03c21d93ccdcf9eb7c960d8864374c8..c9e8c126dcd7d1c8502c59bc8c969b288d5e06ab 100644
--- a/test/build.xml
+++ b/test/build.xml
@@ -162,7 +162,6 @@
-
diff --git a/test/conform/jsrinlineradapter.xml b/test/conform/jsrinlineradapter.xml
deleted file mode 100644
index 661d86b03cbc83301bbb0f4dd17e3d3881593ca6..0000000000000000000000000000000000000000
--- a/test/conform/jsrinlineradapter.xml
+++ /dev/null
@@ -1,51 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/test/conform/org/objectweb/asm/commons/JSRInlinerAdapterTest.java b/test/conform/org/objectweb/asm/commons/JSRInlinerAdapterTest.java
index b79f92d69f7d5b8cdc683ffb547c13370f234d40..a60ec2f54ff0bb4e4c17a1fcd3be70801fa8f12f 100644
--- a/test/conform/org/objectweb/asm/commons/JSRInlinerAdapterTest.java
+++ b/test/conform/org/objectweb/asm/commons/JSRInlinerAdapterTest.java
@@ -27,35 +27,38 @@
// THE POSSIBILITY OF SUCH DAMAGE.
package org.objectweb.asm.commons;
-import junit.framework.TestSuite;
+import static org.junit.Assert.assertTrue;
-import org.objectweb.asm.AbstractTest;
+import java.util.Collection;
+
+import org.junit.Test;
+import org.junit.runners.Parameterized.Parameters;
import org.objectweb.asm.ClassReader;
import org.objectweb.asm.ClassVisitor;
import org.objectweb.asm.ClassWriter;
import org.objectweb.asm.MethodVisitor;
-import org.objectweb.asm.Opcodes;
+import org.objectweb.asm.test.AsmTest;
/**
* JSRInliner tests.
*
* @author Eric Bruneton
*/
-public class JSRInlinerAdapterTest extends AbstractTest {
-
- private static final TestClassLoader LOADER = new TestClassLoader();
+public class JSRInlinerAdapterTest extends AsmTest {
- public static TestSuite suite() throws Exception {
- return new JSRInlinerAdapterTest().getSuite();
+ /** @return test parameters to test all the precompiled classes with ASM6. */
+ @Parameters(name = NAME)
+ public static Collection