diff options
Diffstat (limited to 'old-tests/test/simple/driver.cxx')
-rw-r--r-- | old-tests/test/simple/driver.cxx | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/old-tests/test/simple/driver.cxx b/old-tests/test/simple/driver.cxx new file mode 100644 index 0000000..3753821 --- /dev/null +++ b/old-tests/test/simple/driver.cxx @@ -0,0 +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; +} |