aboutsummaryrefslogtreecommitdiffstats
path: root/lib/common_test/test_server/ts_run.erl
diff options
context:
space:
mode:
authorLukas Larsson <[email protected]>2017-09-12 10:00:47 +0200
committerLukas Larsson <[email protected]>2017-09-12 10:00:47 +0200
commit18fb1a9230578456f3d03b4136ed296407bdf53c (patch)
tree4edfa1ba190f4ebbf3066cd394d9439bb7a62486 /lib/common_test/test_server/ts_run.erl
parent54d87b64ba447371fb51f1ad7e773317e684843f (diff)
parentbcfa4564df41ad5806a4848dcb3be31fbfea6a9e (diff)
downloadotp-18fb1a9230578456f3d03b4136ed296407bdf53c.tar.gz
otp-18fb1a9230578456f3d03b4136ed296407bdf53c.tar.bz2
otp-18fb1a9230578456f3d03b4136ed296407bdf53c.zip
Merge branch 'lukas/ct/ts_abort_on_compilation_fail' into maint
* lukas/ct/ts_abort_on_compilation_fail: erts: Fix leaking of fds in iovec_SUITE ts: Don't test apps that are not available asn1: Fix test suite deprecated functions ct: ts:run now abort the test run on compilation failure
Diffstat (limited to 'lib/common_test/test_server/ts_run.erl')
-rw-r--r--lib/common_test/test_server/ts_run.erl7
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/common_test/test_server/ts_run.erl b/lib/common_test/test_server/ts_run.erl
index 82ae44ec06..e22fa8d196 100644
--- a/lib/common_test/test_server/ts_run.erl
+++ b/lib/common_test/test_server/ts_run.erl
@@ -96,6 +96,9 @@ ct_run_test(Dir, CommonTestArgs) ->
case ct:run_test(CommonTestArgs) of
{_,_,_} ->
ok;
+ {error,{make_failed, _Modules} = Error} ->
+ io:format("ERROR: ~P\n", [Error,20]),
+ erlang:halt(123, [{flush,false}]);
{error,Error} ->
io:format("ERROR: ~P\n", [Error,20]);
Other ->
@@ -288,6 +291,10 @@ tricky_print_data(Port, Timeout) ->
receive
{Port, {exit_status, 0}} ->
ok;
+ {Port, {exit_status, 123 = N}} ->
+ io:format(user, "Test run exited with status ~p,"
+ "aborting rest of test~n", [N]),
+ erlang:halt(123, [{flush,false}]);
{Port, {exit_status, N}} ->
io:format(user, "Test run exited with status ~p~n", [N])
after 1 ->