modula2: Enable iso-extended-opaque-run-pass.exp to build library tests
authorGaius Mulley <gaiusmod2@gmail.com>
Fri, 24 Mar 2023 12:16:44 +0000 (12:16 +0000)
committerGaius Mulley <gaiusmod2@gmail.com>
Fri, 24 Mar 2023 12:16:44 +0000 (12:16 +0000)
This patch fixes the tcl test script iso-extended-opaque-run-pass.exp so
that the test library modules are built and included with the link command.

gcc/testsuite/ChangeLog:

* gm2/projects/iso/small/run/pass/iso-extended-opaque-run-pass.exp:
Compile object for stressset.mod and testlib.mod.  Add test so
that we only link these objects with test application objects.

Signed-off-by: Gaius Mulley <gaiusmod2@gmail.com>
gcc/testsuite/gm2/projects/iso/small/run/pass/iso-extended-opaque-run-pass.exp

index bb9f19ef217f9902af53777dfd159a660b9f3357..4669290befbd52e16bb71dbf6966c49a46001a8d 100755 (executable)
@@ -25,7 +25,7 @@ if $tracelevel then {
 load_lib gm2-torture.exp
 
 gm2_init_iso "${srcdir}/gm2/projects/iso/small/run/pass"
-gm2_link_obj testlib.o
+gm2_link_obj "testlib.o stressset.o"
 
 foreach testcase [lsort [glob -nocomplain $srcdir/$subdir/*.mod]] {
     # If we're only testing specific files and this isn't one of them, skip it.
@@ -33,8 +33,10 @@ foreach testcase [lsort [glob -nocomplain $srcdir/$subdir/*.mod]] {
        continue
     }
 
-    if { $testcase != "$srcdir/$subdir/testlib.mod" } {
+    if { $testcase != "$srcdir/$subdir/testlib.mod" &&
+        $testcase != "$srcdir/$subdir/stressset.mod" } then {
         gm2_target_compile $srcdir/$subdir/testlib.mod testlib.o object "-g"
+        gm2_target_compile $srcdir/$subdir/stressset.mod stressset.o object "-g"
        gm2-torture-execute $testcase "" "pass"
     }
 }