diff options
author | Lukas Larsson <[email protected]> | 2010-10-04 19:03:41 +0200 |
---|---|---|
committer | Lukas Larsson <[email protected]> | 2011-02-17 17:16:53 +0100 |
commit | e993afa1fb9c7143e09c55dee58aee32e9876d78 (patch) | |
tree | 3a3260cff260f14f885847b393b1136bd0e311e8 /lib/inets/test/ftp_solaris10_sparc_test.erl | |
parent | d161dc2b44f29f184e60efcd460ed27b1ee0a0e1 (diff) | |
download | otp-e993afa1fb9c7143e09c55dee58aee32e9876d78.tar.gz otp-e993afa1fb9c7143e09c55dee58aee32e9876d78.tar.bz2 otp-e993afa1fb9c7143e09c55dee58aee32e9876d78.zip |
Updated test cases to work with ts conversion algorithm
Diffstat (limited to 'lib/inets/test/ftp_solaris10_sparc_test.erl')
-rw-r--r-- | lib/inets/test/ftp_solaris10_sparc_test.erl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/inets/test/ftp_solaris10_sparc_test.erl b/lib/inets/test/ftp_solaris10_sparc_test.erl index 6066195f9b..9671afc069 100644 --- a/lib/inets/test/ftp_solaris10_sparc_test.erl +++ b/lib/inets/test/ftp_solaris10_sparc_test.erl @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 2005-2009. All Rights Reserved. +%% Copyright Ericsson AB 2005-2010. All Rights Reserved. %% %% The contents of this file are subject to the Erlang Public License, %% Version 1.1, (the "License"); you may not use this file except in @@ -99,11 +99,11 @@ all(suite) -> open(X) -> ?CASE_WRAPPER(?PLATFORM,X,fun ?LIB_MOD:open/1). open_port(X) -> ?CASE_WRAPPER(?PLATFORM,X,fun ?LIB_MOD:open_port/1). -passive(X) -> ?CASE_WRAPPER(?PLATFORM,X,fun ?LIB_MOD:passive/1). -active(X) -> ?CASE_WRAPPER(?PLATFORM,X,fun ?LIB_MOD:active/1). +passive(suite) ->?LIB_MOD:passive(suite). +active(suite) -> ?LIB_MOD:active(suite). api_missuse(X) -> ?CASE_WRAPPER(?PLATFORM,X,fun ?LIB_MOD:api_missuse/1). not_owner(X) -> ?CASE_WRAPPER(?PLATFORM,X,fun ?LIB_MOD:not_owner/1). -progress_report(X) -> ?CASE_WRAPPER(?PLATFORM,X,fun ?LIB_MOD:progress_report/1). +progress_report(suite) -> ?LIB_MOD:progress_report(suite). passive_user(X) -> ?LIB_MOD:passive_user(X). passive_pwd(X) -> ?LIB_MOD:passive_pwd(X). |