diff --git a/test/build.xml b/test/build.xml
index 0ebe61fdf03c21d93ccdcf9eb7c960d8864374c8..9b5331ddccba12b25c223e74f4aa7261b26efba7 100644
--- a/test/build.xml
+++ b/test/build.xml
@@ -163,8 +163,6 @@
-
-
diff --git a/test/conform/localvariablessorter.xml b/test/conform/localvariablessorter.xml
deleted file mode 100644
index a9bf2d3f906df8bbb5303e083042251ad4325ca6..0000000000000000000000000000000000000000
--- a/test/conform/localvariablessorter.xml
+++ /dev/null
@@ -1,50 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/test/conform/localvariablessorter2.xml b/test/conform/localvariablessorter2.xml
deleted file mode 100644
index 4ff89d64341f10887ff13c057910552502d6d36f..0000000000000000000000000000000000000000
--- a/test/conform/localvariablessorter2.xml
+++ /dev/null
@@ -1,123 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/test/conform/org/objectweb/asm/commons/LocalVariablesSorterTest.java b/test/conform/org/objectweb/asm/commons/LocalVariablesSorterTest.java
index 616cc8621b48f31676413556d9dea59a3504c60f..a37a635b1b8482b70eceee64688f3a3e10009088 100644
--- a/test/conform/org/objectweb/asm/commons/LocalVariablesSorterTest.java
+++ b/test/conform/org/objectweb/asm/commons/LocalVariablesSorterTest.java
@@ -27,34 +27,42 @@
// 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;
/**
- * LocalVariableSorter tests.
+ * LocalVariablesSorter tests.
*
* @author Eric Bruneton
*/
-public class LocalVariablesSorterTest extends AbstractTest {
-
- private static final TestClassLoader LOADER = new TestClassLoader();
+public class LocalVariablesSorterTest extends AsmTest {
- public static TestSuite suite() throws Exception {
- return new LocalVariablesSorterTest().getSuite();
+ /** @return test parameters to test all the precompiled classes with all the apis. */
+ @Parameters(name = NAME)
+ public static Collection