diff options
author | Alon Zakai <alonzakai@gmail.com> | 2014-01-20 19:43:09 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2014-01-20 19:43:09 -0800 |
commit | d806b71796493113e000b1dd5f918aaab691aba0 (patch) | |
tree | e030b46c43ec306c2e0ad2d2c5a4af8616d2dee3 /tests | |
parent | df4d91df0e527cad9558fb0e967371c27fdb2401 (diff) | |
parent | e7ae95bd86e363d6c51ca00abacb6733fc0d01cb (diff) |
Merge pull request #2037 from waywardmonkeys/updates5
Updates 5
Diffstat (limited to 'tests')
-rw-r--r-- | tests/core/test_exceptions_std.in | 1 | ||||
-rw-r--r-- | tests/core/test_exceptions_std.out | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/tests/core/test_exceptions_std.in b/tests/core/test_exceptions_std.in index 4b5905d8..3b9f874b 100644 --- a/tests/core/test_exceptions_std.in +++ b/tests/core/test_exceptions_std.in @@ -7,6 +7,7 @@ int main() { throw e; } catch (std::exception e) { + printf("what? %s\n", e.what()); printf("caught std::exception\n"); } return 0; diff --git a/tests/core/test_exceptions_std.out b/tests/core/test_exceptions_std.out index c1660de4..eddab21c 100644 --- a/tests/core/test_exceptions_std.out +++ b/tests/core/test_exceptions_std.out @@ -1 +1,2 @@ -caught std::exception
\ No newline at end of file +what? std::exception +caught std::exception |