diff options
author | Björn Gustavsson <[email protected]> | 2012-09-14 15:59:45 +0200 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2012-09-19 11:51:35 +0200 |
commit | 1a2b1519b290bcf9842fcad6152ab1ee7edb1e14 (patch) | |
tree | 620deeb8fb943468b39312ec64695f3859c8fc39 /lib/common_test/test/Makefile | |
parent | 4be621ce3f116185500d6ef7282222cec3dc743e (diff) | |
download | otp-1a2b1519b290bcf9842fcad6152ab1ee7edb1e14.tar.gz otp-1a2b1519b290bcf9842fcad6152ab1ee7edb1e14.tar.bz2 otp-1a2b1519b290bcf9842fcad6152ab1ee7edb1e14.zip |
Teach test_server to report severe errors to common_test
If a severe error occurs in test_server (e.g. failing to write to
log files), test_server would terminate without commont_test knowing
about it. Since ct_run can now return an exit code, it is important
that common_test is aware of severe problem so that it can indicate
that an error has occurred.
Diffstat (limited to 'lib/common_test/test/Makefile')
-rw-r--r-- | lib/common_test/test/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/common_test/test/Makefile b/lib/common_test/test/Makefile index 686ee43aa3..3526ef4421 100644 --- a/lib/common_test/test/Makefile +++ b/lib/common_test/test/Makefile @@ -51,7 +51,8 @@ MODULES= \ ct_basic_html_SUITE \ ct_auto_compile_SUITE \ ct_verbosity_SUITE \ - ct_shell_SUITE + ct_shell_SUITE \ + ct_system_error_SUITE ERL_FILES= $(MODULES:%=%.erl) |