diff options
Diffstat (limited to 'tests')
-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; } |