diff options
author | Siri Hansen <[email protected]> | 2012-11-21 11:44:19 +0100 |
---|---|---|
committer | Siri Hansen <[email protected]> | 2012-12-04 11:35:51 +0100 |
commit | bd67967b55a172b46c29a503439feb1e7c58ab06 (patch) | |
tree | db5f5629f3b44dc62006f9bf690eb818b16dc0ee /lib/common_test/test | |
parent | a545edc30363ea1ddf8b7805c38e748ed4741ffc (diff) | |
download | otp-bd67967b55a172b46c29a503439feb1e7c58ab06.tar.gz otp-bd67967b55a172b46c29a503439feb1e7c58ab06.tar.bz2 otp-bd67967b55a172b46c29a503439feb1e7c58ab06.zip |
[test_server,common_test] Fix cross cover mechansim
Update the interface for cross cover analysis (collection of cover
data over multiple tests) so it can be used via common_test and
directly with test server.
The concept of 'application' in the cross cover interface is removed
and replaced with an arbitrary Tag=atom() which identifies a test run.
Diffstat (limited to 'lib/common_test/test')
-rw-r--r-- | lib/common_test/test/common_test.cover | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/lib/common_test/test/common_test.cover b/lib/common_test/test/common_test.cover index 66697854ea..3aa49623e7 100644 --- a/lib/common_test/test/common_test.cover +++ b/lib/common_test/test/common_test.cover @@ -1,10 +1,10 @@ %% -*- erlang -*- {incl_app,common_test,details}. -{cross_apps,common_test,[erl2html2, - test_server, - test_server_ctrl, - test_server_gl, - test_server_h, - test_server_io, - test_server_node, - test_server_sup]}. +{cross,common_test,[{test_server,[erl2html2, + test_server, + test_server_ctrl, + test_server_gl, + test_server_h, + test_server_io, + test_server_node, + test_server_sup]}]}. |