diff options
author | Björn Gustavsson <[email protected]> | 2012-09-19 14:24:00 +0200 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2012-09-20 11:31:35 +0200 |
commit | f0647fecfbb6c0bdfea0e9f1f65cf9a60ae5dbca (patch) | |
tree | 706214389a3bebfa35199753759e37634fd3b7f0 /lib/test_server/src/ts.erl | |
parent | 4df369dbfb373a113b6c05c944741dbcbcd27bba (diff) | |
download | otp-f0647fecfbb6c0bdfea0e9f1f65cf9a60ae5dbca.tar.gz otp-f0647fecfbb6c0bdfea0e9f1f65cf9a60ae5dbca.tar.bz2 otp-f0647fecfbb6c0bdfea0e9f1f65cf9a60ae5dbca.zip |
ts: Remove the obsolete ts:index/0 command
The ts:index/0 command only works with test_server log directories.
The functionality to generate an overview of all tests run is now
provided by common_test itself.
Diffstat (limited to 'lib/test_server/src/ts.erl')
-rw-r--r-- | lib/test_server/src/ts.erl | 18 |
1 files changed, 2 insertions, 16 deletions
diff --git a/lib/test_server/src/ts.erl b/lib/test_server/src/ts.erl index a30f6c65fe..6ceebbe850 100644 --- a/lib/test_server/src/ts.erl +++ b/lib/test_server/src/ts.erl @@ -27,7 +27,7 @@ -export([run/0, run/1, run/2, run/3, run/4, clean/0, clean/1, tests/0, tests/1, - install/0, install/1, index/0, + install/0, install/1, bench/0, bench/1, bench/2, benchmarks/0, estone/0, estone/1, cross_cover_analyse/1, @@ -42,17 +42,11 @@ %%% %%% +-- ts_install --+------ ts_autoconf_win32 %%% | -%%% | -%%% | %%% ts ---+ +------ ts_erl_config %%% | | ts_lib -%%% | +------ ts_make -%%% | | -%%% +-- ts_run -----+ +%%% +-- ts_run -----+------ ts_make %%% | | ts_filelib %%% | +------ ts_make_erl -%%% | | -%%% | +------ ts_reports (indirectly) %%% | %%% +-- ts_benchmark %%% @@ -77,8 +71,6 @@ %%% and other platforms. %%% ts_make_erl A corrected version of the standar Erlang module %%% make (used for rebuilding test suites). -%%% ts_reports Generates index pages in HTML, providing a summary -%%% of the tests run. %%% ts_lib Miscellanous utility functions, each used by several %%% other modules. %%% ts_benchmark Supervises otp benchmarks and collects results. @@ -163,7 +155,6 @@ help(installed) -> " ts:tests() - Shows all available families of tests.\n", " ts:tests(Spec) - Shows all available test modules in Spec,\n", " i.e. ../Spec_test/*_SUITE.erl\n", - " ts:index() - Updates local index page.\n", " ts:clean() - Cleans up all but the last tests run.\n", " ts:clean(all) - Cleans up all test runs found.\n", " ts:estone() - Run estone_SUITE in kernel application with\n" @@ -201,11 +192,6 @@ install() -> install(Options) when is_list(Options) -> ts_install:install(install_local,Options). -%% Updates the local index page. - -index() -> - check_and_run(fun(_Vars) -> ts_reports:make_index(), ok end). - %% %% clean(all) %% Deletes all logfiles. |