diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2015-07-24 10:32:50 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2015-07-24 10:32:50 +0200 |
commit | bb4f9e6498ba715911f83e0dc221a5b1b86baf51 (patch) | |
tree | 021007995d476770b6dced459a770712baa8ea72 /tests/test/simple/driver.cxx | |
parent | 3c57a25a4d6a80301ece82ab33f1394e34f8b873 (diff) |
Further test module development
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 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; } |