aboutsummaryrefslogtreecommitdiffstats
path: root/vespalib/src/tests/testapp-debug/testapp-debug.cpp
diff options
context:
space:
mode:
authorTor Egge <Tor.Egge@broadpark.no>2018-06-01 13:36:28 +0000
committerTor Egge <Tor.Egge@oath.com>2018-06-01 14:05:28 +0000
commit695381e25c7c35f7558cacb802f781c3bc957051 (patch)
tree35cfe6760fe4ac3040ad92bef73c326d9abc1361 /vespalib/src/tests/testapp-debug/testapp-debug.cpp
parentfe3d564ddf26df3e72bf4244d1edbef2237044d3 (diff)
Check return values in vespalib.
Diffstat (limited to 'vespalib/src/tests/testapp-debug/testapp-debug.cpp')
-rw-r--r--vespalib/src/tests/testapp-debug/testapp-debug.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/vespalib/src/tests/testapp-debug/testapp-debug.cpp b/vespalib/src/tests/testapp-debug/testapp-debug.cpp
index 8c75a104cd8..0083200ac51 100644
--- a/vespalib/src/tests/testapp-debug/testapp-debug.cpp
+++ b/vespalib/src/tests/testapp-debug/testapp-debug.cpp
@@ -4,8 +4,12 @@
using namespace vespalib;
TEST_MAIN() {
- system("./vespalib_debug_test_app");
- system("diff lhs.out rhs.out > diff.out");
+ int status = system("./vespalib_debug_test_app");
+ ASSERT_FALSE(WIFSIGNALED(status));
+ EXPECT_NOT_EQUAL(0, WEXITSTATUS(status));
+ status = system("diff lhs.out rhs.out > diff.out");
+ ASSERT_FALSE(WIFSIGNALED(status));
+ EXPECT_NOT_EQUAL(0, WEXITSTATUS(status));
std::string diff_cmd("diff diff.out ");