From 404a9b03d2e95ffa52e973af7e1e398120b63925 Mon Sep 17 00:00:00 2001 From: Ray Speth Date: Sat, 15 Nov 2014 19:27:12 +0000 Subject: [PATCH] [Test] Use exit code to indicate failure in surfSolver test --- test_problems/surfSolverTest/surfaceSolver.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/test_problems/surfSolverTest/surfaceSolver.cpp b/test_problems/surfSolverTest/surfaceSolver.cpp index 3c7865f6b..fc331a50e 100644 --- a/test_problems/surfSolverTest/surfaceSolver.cpp +++ b/test_problems/surfSolverTest/surfaceSolver.cpp @@ -437,6 +437,7 @@ int main(int argc, char** argv) appdelete(); } catch (CanteraError& err) { std::cout << err.what() << std::endl; + return 1; } return 0;