diff options
author | Peter Andersson <[email protected]> | 2011-04-08 16:26:39 +0200 |
---|---|---|
committer | Peter Andersson <[email protected]> | 2011-04-20 22:32:38 +0200 |
commit | 34208aa4201b169249c03a188afb5076dc4804a2 (patch) | |
tree | 5435fc965eb40e9898bef1ff28aefc1ada265cba /lib/common_test/src/ct_run.erl | |
parent | 1b51729df1a5c9678beb73318b8cf2a12b0e145d (diff) | |
download | otp-34208aa4201b169249c03a188afb5076dc4804a2.tar.gz otp-34208aa4201b169249c03a188afb5076dc4804a2.tar.bz2 otp-34208aa4201b169249c03a188afb5076dc4804a2.zip |
Fix problem with CT hook start error causing IO to be sent to wrong group leader process.
Diffstat (limited to 'lib/common_test/src/ct_run.erl')
-rw-r--r-- | lib/common_test/src/ct_run.erl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/common_test/src/ct_run.erl b/lib/common_test/src/ct_run.erl index 7bd7dc7d66..52a81a5b46 100644 --- a/lib/common_test/src/ct_run.erl +++ b/lib/common_test/src/ct_run.erl @@ -1111,6 +1111,8 @@ run(TestDirs) -> install([]), reformat_result(catch do_run(tests(TestDirs), [])). +reformat_result({'EXIT',{user_error,Reason}}) -> + {error,Reason}; reformat_result({user_error,Reason}) -> {error,Reason}; reformat_result(Result) -> |