Skip to content

Commit f4b3a53

Browse files
committed
SystemTests: shuffle tests
honestly, i think this might be annoying, especially if you try to run the tests locally to reproduce an issue and the order keeps changing.
1 parent 8285cfc commit f4b3a53

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/scala/SystemTests.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ trait SystemTests extends AnyFunSuite, BASILTest {
5252

5353
def runTests(folder: String, conf: TestConfig): Unit = {
5454
val path = testPath + folder
55-
val programs = getSubdirectories(path)
55+
val programs = scala.util.Random.shuffle(getSubdirectories(path))
5656

5757
// get all variations of each program
5858
val testSuffix = if conf.useBAPFrontend then ":BAP" else ":GTIRB"

0 commit comments

Comments
 (0)