contrib/nitester: sort tests per engine first
authorAlexis Laferrière <alexis.laf@xymus.net>
Sun, 14 Dec 2014 03:28:58 +0000 (22:28 -0500)
committerAlexis Laferrière <alexis.laf@xymus.net>
Mon, 15 Dec 2014 15:09:02 +0000 (10:09 -0500)
Signed-off-by: Alexis Laferrière <alexis.laf@xymus.net>

contrib/nitester/src/nitester.nit

index ad4dbe3..eed0d4b 100644 (file)
@@ -187,8 +187,7 @@ abstract class Processor
                        skip = new Array[String]
                end
 
-               for prog in test_programs do for engine in engines do
-
+               for engine in engines do for prog in test_programs do
                        # Is is blacklisted?
                        for s in skip do if not s.is_empty and prog.has(s) then
                                if verbose > 0 and rank == 0 then print "Skipping test '{prog}' because of '{s}' in turing.skip"