diff options
author | Peter Andersson <[email protected]> | 2013-04-17 16:17:23 +0200 |
---|---|---|
committer | Peter Andersson <[email protected]> | 2013-04-17 16:17:23 +0200 |
commit | a61dd35475f4fb7ba94dab5d547cb98bdefb7862 (patch) | |
tree | e11872a1f888ab9ad7bcbdbc49a50aa181dc1804 /lib/common_test/test | |
parent | 6df14788a8b62de478d636a4412ec94ebe136713 (diff) | |
download | otp-a61dd35475f4fb7ba94dab5d547cb98bdefb7862.tar.gz otp-a61dd35475f4fb7ba94dab5d547cb98bdefb7862.tar.bz2 otp-a61dd35475f4fb7ba94dab5d547cb98bdefb7862.zip |
Bug fixes in Common Test log cache
Diffstat (limited to 'lib/common_test/test')
-rw-r--r-- | lib/common_test/test/ct_test_support.erl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/common_test/test/ct_test_support.erl b/lib/common_test/test/ct_test_support.erl index d053fa4e09..6bcac12326 100644 --- a/lib/common_test/test/ct_test_support.erl +++ b/lib/common_test/test/ct_test_support.erl @@ -250,11 +250,12 @@ run(Opts0, Config) when is_list(Opts0) -> Opts0 end end, ->>>>>>> peppe/common_test/log_cache + %% use ct interface CtRunTestResult=run_ct_run_test(Opts,Config), %% use run_test interface (simulated) ExitStatus=run_ct_script_start(Opts,Config), + check_result(CtRunTestResult,ExitStatus,Opts). run_ct_run_test(Opts,Config) -> |