diff options
author | Fredrik Gustafsson <[email protected]> | 2013-03-14 16:06:58 +0100 |
---|---|---|
committer | Fredrik Gustafsson <[email protected]> | 2013-03-14 16:06:58 +0100 |
commit | f26dab68e9b3d40e59b015bb5b0cbfaf6995a66b (patch) | |
tree | 3034e0313de2ecf1f3ce3aca21ae651b5c371200 /lib | |
parent | ba14dbaae746dd1529a32644b58d6ef9254b3c9b (diff) | |
parent | c4011d1760f0a24f225a7ae55b1326689e00d227 (diff) | |
download | otp-f26dab68e9b3d40e59b015bb5b0cbfaf6995a66b.tar.gz otp-f26dab68e9b3d40e59b015bb5b0cbfaf6995a66b.tar.bz2 otp-f26dab68e9b3d40e59b015bb5b0cbfaf6995a66b.zip |
Merge branch 'maint'
Diffstat (limited to 'lib')
-rw-r--r-- | lib/common_test/src/ct_util.erl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/common_test/src/ct_util.erl b/lib/common_test/src/ct_util.erl index 2e7e731595..02e58d0786 100644 --- a/lib/common_test/src/ct_util.erl +++ b/lib/common_test/src/ct_util.erl @@ -940,7 +940,9 @@ ct_make_ref_loop(N) -> From ! {self(),N}, ct_make_ref_loop(N+1) end. - + +abs_name("/") -> + "/"; abs_name(Dir0) -> Abs = filename:absname(Dir0), Dir = case lists:reverse(Abs) of |