// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. #include using namespace vespalib; TEST_MAIN() { system("./vespalib_debug_test_app"); system("diff lhs.out rhs.out > diff.out"); std::string diff_cmd("diff diff.out "); diff_cmd += TEST_PATH("diff.ref"); EXPECT_EQUAL(system(diff_cmd.c_str()), 0); }