diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2015-07-23 09:59:52 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2015-07-23 09:59:52 +0200 |
commit | 3c57a25a4d6a80301ece82ab33f1394e34f8b873 (patch) | |
tree | 2ff64ebcfab74f90e81fdd2963fb653630d6d17b /tests/test/simple/driver.cxx | |
parent | 34e5a2da18f76c7d7de79a5c12b0e85ee89c4095 (diff) |
Basic test support
Diffstat (limited to 'tests/test/simple/driver.cxx')
-rw-r--r-- | tests/test/simple/driver.cxx | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/test/simple/driver.cxx b/tests/test/simple/driver.cxx index 70b4146..3753821 100644 --- a/tests/test/simple/driver.cxx +++ b/tests/test/simple/driver.cxx @@ -1,4 +1,14 @@ +#include <iostream> +#include <cassert> + +using namespace std; + int main () { + cerr << "test is running (stderr)" << endl; + //assert (false); + cout << "test is running (stdout)" << endl; + return 0; + //return 1; } |