aboutsummaryrefslogtreecommitdiff
path: root/tests/cc
diff options
context:
space:
mode:
Diffstat (limited to 'tests/cc')
-rw-r--r--tests/cc/modules/testscript12
1 files changed, 4 insertions, 8 deletions
diff --git a/tests/cc/modules/testscript b/tests/cc/modules/testscript
index 5642be8..5f048f8 100644
--- a/tests/cc/modules/testscript
+++ b/tests/cc/modules/testscript
@@ -77,30 +77,26 @@ EOI
:
: Test combined interface/implementation unit specified as bmi{}.
:
-if ($cxx.id != "gcc")
-cp ../core.mxx ./ && cat >+core.mxx <<EOI #;
+cp ../core.mxx ./ && cat >+core.mxx <<EOI;
int f (int i) {return i - 1;}
EOI
-cp ../driver.cxx ./ #;
+cp ../driver.cxx ./;
$* test clean <<EOI
exe{test}: cxx{driver} bmi{core}
bmi{core}: mxx{core}
EOI
-end
: mxx-combined
:
: Test combined interface/implementation unit specified as mxx{}.
:
-if ($cxx.id != "gcc")
-cp ../core.mxx ./ && cat >+core.mxx <<EOI #;
+cp ../core.mxx ./ && cat >+core.mxx <<EOI;
int f (int i) {return i - 1;}
EOI
-cp ../driver.cxx ./ #;
+cp ../driver.cxx ./;
$* test clean <<EOI
exe{test}: cxx{driver} mxx{core}
EOI
-end
: bmi-separate
: