sim: frv: split up testsuite a bit
authorMike Frysinger <vapier@gentoo.org>
Sat, 27 Nov 2021 07:01:03 +0000 (02:01 -0500)
committerMike Frysinger <vapier@gentoo.org>
Sat, 4 Dec 2021 17:52:35 +0000 (12:52 -0500)
Running frv's allinsn in serial is quite slow due to the sheer number
of tests it contains.  By splitting it up and running in parallel, the
execution time on my system goes from ~100sec to ~60sec.

sim/testsuite/frv/allinsn-a-b.exp [new file with mode: 0644]
sim/testsuite/frv/allinsn-c.exp [new file with mode: 0644]
sim/testsuite/frv/allinsn-d-h.exp [new file with mode: 0644]
sim/testsuite/frv/allinsn-i-l.exp [new file with mode: 0644]
sim/testsuite/frv/allinsn-m.exp [new file with mode: 0644]
sim/testsuite/frv/allinsn-n.exp [new file with mode: 0644]
sim/testsuite/frv/allinsn-o-s.exp [new file with mode: 0644]
sim/testsuite/frv/allinsn-t-z.exp [new file with mode: 0644]
sim/testsuite/frv/allinsn.exp [deleted file]

diff --git a/sim/testsuite/frv/allinsn-a-b.exp b/sim/testsuite/frv/allinsn-a-b.exp
new file mode 100644 (file)
index 0000000..c24cd42
--- /dev/null
@@ -0,0 +1,17 @@
+# FRV simulator testsuite.
+
+sim_init
+
+# all machines
+set all_machs "frv fr500 fr550 fr400 fr405 fr450"
+set cpu_option -mcpu
+
+# The .cgs suffix is for "cgen .s".
+foreach src [lsort [glob -nocomplain $srcdir/$subdir/\[a-b\]*.cgs]] {
+    # If we're only testing specific files and this isn't one of them,
+    # skip it.
+    if ![runtest_file_p $runtests $src] {
+       continue
+    }
+    run_sim_test $src $all_machs
+}
diff --git a/sim/testsuite/frv/allinsn-c.exp b/sim/testsuite/frv/allinsn-c.exp
new file mode 100644 (file)
index 0000000..e1672e8
--- /dev/null
@@ -0,0 +1,17 @@
+# FRV simulator testsuite.
+
+sim_init
+
+# all machines
+set all_machs "frv fr500 fr550 fr400 fr405 fr450"
+set cpu_option -mcpu
+
+# The .cgs suffix is for "cgen .s".
+foreach src [lsort [glob -nocomplain $srcdir/$subdir/\[c\]*.cgs]] {
+    # If we're only testing specific files and this isn't one of them,
+    # skip it.
+    if ![runtest_file_p $runtests $src] {
+       continue
+    }
+    run_sim_test $src $all_machs
+}
diff --git a/sim/testsuite/frv/allinsn-d-h.exp b/sim/testsuite/frv/allinsn-d-h.exp
new file mode 100644 (file)
index 0000000..8c29369
--- /dev/null
@@ -0,0 +1,17 @@
+# FRV simulator testsuite.
+
+sim_init
+
+# all machines
+set all_machs "frv fr500 fr550 fr400 fr405 fr450"
+set cpu_option -mcpu
+
+# The .cgs suffix is for "cgen .s".
+foreach src [lsort [glob -nocomplain $srcdir/$subdir/\[d-h\]*.cgs]] {
+    # If we're only testing specific files and this isn't one of them,
+    # skip it.
+    if ![runtest_file_p $runtests $src] {
+       continue
+    }
+    run_sim_test $src $all_machs
+}
diff --git a/sim/testsuite/frv/allinsn-i-l.exp b/sim/testsuite/frv/allinsn-i-l.exp
new file mode 100644 (file)
index 0000000..10b8793
--- /dev/null
@@ -0,0 +1,17 @@
+# FRV simulator testsuite.
+
+sim_init
+
+# all machines
+set all_machs "frv fr500 fr550 fr400 fr405 fr450"
+set cpu_option -mcpu
+
+# The .cgs suffix is for "cgen .s".
+foreach src [lsort [glob -nocomplain $srcdir/$subdir/\[i-l\]*.cgs]] {
+    # If we're only testing specific files and this isn't one of them,
+    # skip it.
+    if ![runtest_file_p $runtests $src] {
+       continue
+    }
+    run_sim_test $src $all_machs
+}
diff --git a/sim/testsuite/frv/allinsn-m.exp b/sim/testsuite/frv/allinsn-m.exp
new file mode 100644 (file)
index 0000000..e3733e0
--- /dev/null
@@ -0,0 +1,17 @@
+# FRV simulator testsuite.
+
+sim_init
+
+# all machines
+set all_machs "frv fr500 fr550 fr400 fr405 fr450"
+set cpu_option -mcpu
+
+# The .cgs suffix is for "cgen .s".
+foreach src [lsort [glob -nocomplain $srcdir/$subdir/\[m\]*.cgs]] {
+    # If we're only testing specific files and this isn't one of them,
+    # skip it.
+    if ![runtest_file_p $runtests $src] {
+       continue
+    }
+    run_sim_test $src $all_machs
+}
diff --git a/sim/testsuite/frv/allinsn-n.exp b/sim/testsuite/frv/allinsn-n.exp
new file mode 100644 (file)
index 0000000..e6c41b4
--- /dev/null
@@ -0,0 +1,17 @@
+# FRV simulator testsuite.
+
+sim_init
+
+# all machines
+set all_machs "frv fr500 fr550 fr400 fr405 fr450"
+set cpu_option -mcpu
+
+# The .cgs suffix is for "cgen .s".
+foreach src [lsort [glob -nocomplain $srcdir/$subdir/\[n\]*.cgs]] {
+    # If we're only testing specific files and this isn't one of them,
+    # skip it.
+    if ![runtest_file_p $runtests $src] {
+       continue
+    }
+    run_sim_test $src $all_machs
+}
diff --git a/sim/testsuite/frv/allinsn-o-s.exp b/sim/testsuite/frv/allinsn-o-s.exp
new file mode 100644 (file)
index 0000000..98906e8
--- /dev/null
@@ -0,0 +1,17 @@
+# FRV simulator testsuite.
+
+sim_init
+
+# all machines
+set all_machs "frv fr500 fr550 fr400 fr405 fr450"
+set cpu_option -mcpu
+
+# The .cgs suffix is for "cgen .s".
+foreach src [lsort [glob -nocomplain $srcdir/$subdir/\[o-s\]*.cgs]] {
+    # If we're only testing specific files and this isn't one of them,
+    # skip it.
+    if ![runtest_file_p $runtests $src] {
+       continue
+    }
+    run_sim_test $src $all_machs
+}
diff --git a/sim/testsuite/frv/allinsn-t-z.exp b/sim/testsuite/frv/allinsn-t-z.exp
new file mode 100644 (file)
index 0000000..04b0e57
--- /dev/null
@@ -0,0 +1,17 @@
+# FRV simulator testsuite.
+
+sim_init
+
+# all machines
+set all_machs "frv fr500 fr550 fr400 fr405 fr450"
+set cpu_option -mcpu
+
+# The .cgs suffix is for "cgen .s".
+foreach src [lsort [glob -nocomplain $srcdir/$subdir/\[t-z\]*.cgs]] {
+    # If we're only testing specific files and this isn't one of them,
+    # skip it.
+    if ![runtest_file_p $runtests $src] {
+       continue
+    }
+    run_sim_test $src $all_machs
+}
diff --git a/sim/testsuite/frv/allinsn.exp b/sim/testsuite/frv/allinsn.exp
deleted file mode 100644 (file)
index 32a87a3..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-# FRV simulator testsuite.
-
-sim_init
-
-if [istarget *] {
-    # all machines
-    set all_machs "frv fr500 fr550 fr400 fr405 fr450"
-    set cpu_option -mcpu
-
-    # The .cgs suffix is for "cgen .s".
-    foreach src [lsort [glob -nocomplain $srcdir/$subdir/*.cgs]] {
-       # If we're only testing specific files and this isn't one of them,
-       # skip it.
-       if ![runtest_file_p $runtests $src] {
-           continue
-       }
-       run_sim_test $src $all_machs
-    }
-}