aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/test/simple/buildfile6
-rw-r--r--tests/test/simple/driver.cxx6
-rw-r--r--tests/test/simple/test.out (renamed from tests/test/simple/test.std)0
3 files changed, 7 insertions, 5 deletions
diff --git a/tests/test/simple/buildfile b/tests/test/simple/buildfile
index 518b672..3b3598a 100644
--- a/tests/test/simple/buildfile
+++ b/tests/test/simple/buildfile
@@ -5,9 +5,11 @@ cxx.ext = cxx
lib{utility}: cxx{utility}
exe{driver}: cxx{driver} #lib{utility}
-exe{driver}: test = true
-test.exe = false
+#exe{driver}: test.roundtrip = test.out
+
+test.exe = true
+test.exe.output = test.out
.: lib{utility} exe{driver}
#.: exe{driver}
diff --git a/tests/test/simple/driver.cxx b/tests/test/simple/driver.cxx
index 3753821..26d1d51 100644
--- a/tests/test/simple/driver.cxx
+++ b/tests/test/simple/driver.cxx
@@ -7,8 +7,8 @@ int
main ()
{
cerr << "test is running (stderr)" << endl;
- //assert (false);
+ assert (false);
cout << "test is running (stdout)" << endl;
- return 0;
- //return 1;
+ //return 0;
+ return 1;
}
diff --git a/tests/test/simple/test.std b/tests/test/simple/test.out
index 5d63fab..5d63fab 100644
--- a/tests/test/simple/test.std
+++ b/tests/test/simple/test.out