diff options
author | Peter Andersson <[email protected]> | 2012-01-17 00:01:42 +0100 |
---|---|---|
committer | Peter Andersson <[email protected]> | 2012-03-13 14:54:14 +0100 |
commit | 24cb87703d919598d5b95268d868432c8ada3232 (patch) | |
tree | c760d6d1f089b0393c992983004c10782d7c2c1c /lib/test_server/src/test_server_ctrl.erl | |
parent | 027456f090fa4d298dd34655d6bb44d2531a135f (diff) | |
download | otp-24cb87703d919598d5b95268d868432c8ada3232.tar.gz otp-24cb87703d919598d5b95268d868432c8ada3232.tar.bz2 otp-24cb87703d919598d5b95268d868432c8ada3232.zip |
Create entry for every repeated test in index.html
For each repeated test during a test run, an entry is created
in the index.html file (i.e. the overview file for the test run).
In the top level (logdir) index file, only the last test result is
listed.
E.g, given the test spec:
[{merge_tests,false},{dirs,testobj1},{dirs,testobj1}]
In the index file for the test run (under Logdir/ct_run.Node.Date.Time),
both dir tests are listed. In the top level index file (under Logdir),
only the last test is listed (one has to find all results through the
all_runs.html file).
Diffstat (limited to 'lib/test_server/src/test_server_ctrl.erl')
-rw-r--r-- | lib/test_server/src/test_server_ctrl.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/test_server/src/test_server_ctrl.erl b/lib/test_server/src/test_server_ctrl.erl index 4b649c3ec5..5466ab2cfa 100644 --- a/lib/test_server/src/test_server_ctrl.erl +++ b/lib/test_server/src/test_server_ctrl.erl @@ -1818,7 +1818,7 @@ do_test_cases(TopCase, SkipCases, Config, TimetrapSpec) -> %% Creates the log directories, the major log file and the html log file. %% The log files are initialized with some header information. %% -%% The name of the log directory will be <Name>.LOGS/run.<Date>/ where +%% The name of the log directory will be <Name>.logs/run.<Date>/ where %% Name is the test suite name and Date is the current date and time. start_log_file() -> |