diff options
author | Peter Andersson <[email protected]> | 2010-07-05 23:38:58 +0200 |
---|---|---|
committer | Peter Andersson <[email protected]> | 2010-07-06 02:44:27 +0200 |
commit | 311ed3490b2b9dc93433827a3941c14e40f41a2e (patch) | |
tree | 69bc946aa0a3677abde5d4d4acd75d007b96516f /lib/common_test/src/ct_util.erl | |
parent | ab61ffca8dda3ae387e479bb5ef4f40bd22cc6e9 (diff) | |
download | otp-311ed3490b2b9dc93433827a3941c14e40f41a2e.tar.gz otp-311ed3490b2b9dc93433827a3941c14e40f41a2e.tar.bz2 otp-311ed3490b2b9dc93433827a3941c14e40f41a2e.zip |
Fix bug that crashes common_test when running cover
Diffstat (limited to 'lib/common_test/src/ct_util.erl')
-rw-r--r-- | lib/common_test/src/ct_util.erl | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/lib/common_test/src/ct_util.erl b/lib/common_test/src/ct_util.erl index 86e1482eb0..0a434666fa 100644 --- a/lib/common_test/src/ct_util.erl +++ b/lib/common_test/src/ct_util.erl @@ -45,7 +45,7 @@ -export([get_mode/0, create_table/3, read_opts/0]). --export([set_cwd/1, reset_cwd/0, get_ct_root/0]). +-export([set_cwd/1, reset_cwd/0]). -export([parse_table/1]). @@ -620,14 +620,6 @@ get_testdir(Dir, _) -> get_testdir(Dir, all). %%%----------------------------------------------------------------- -%%% @spec -%%% -%%% @doc -get_ct_root() -> - [_Ebin|CTPath] = lists:reverse(filename:split(filename:dirname(code:which(?MODULE)))), - lists:reverse(CTPath). - -%%%----------------------------------------------------------------- %%% @spec %%% %%% @doc |