aboutsummaryrefslogtreecommitdiff
path: root/tests/cc
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2017-06-15 15:04:29 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2017-06-15 15:04:29 +0200
commit87f97db9d5dbe2aefbeb6c49c4bb65aa3b8afbc7 (patch)
tree4db1d7ed11bf7522fd689582eefe8899c4b9818a /tests/cc
parent4e16f8438cad62cd4217faa9806cb354b950ccc4 (diff)
Enable all module tests for GCC (requires cxx-modules r249216)
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
: