diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2015-08-13 14:48:41 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2015-08-13 14:48:41 +0200 |
commit | 9fa5209175dffb881e8ec6c5f6ad4fc54448244a (patch) | |
tree | b937763e9605832f9cac87b846a2996c8727af12 /tests/test/simple/driver.cxx | |
parent | 467d700c66582471013a07384318d0142d2f3de2 (diff) |
Rework postponed logic
Specifically, now postponed is only used by the execution mode logic
and rules should not return it directly.
Diffstat (limited to 'tests/test/simple/driver.cxx')
-rw-r--r-- | tests/test/simple/driver.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/test/simple/driver.cxx b/tests/test/simple/driver.cxx index 26d1d51..3753821 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; } |