diff options
author | Micael Karlberg <[email protected]> | 2019-01-30 14:17:52 +0100 |
---|---|---|
committer | Micael Karlberg <[email protected]> | 2019-01-30 14:17:52 +0100 |
commit | 060338c0a6904cc4aaf5226dc7fb321ad3d23862 (patch) | |
tree | c086567f871c61a583cbb57aea3695283b98f589 /erts/emulator/test/socket_SUITE.erl | |
parent | 3d166efe4f3ee6a93edf361a9d72633a00fb486f (diff) | |
download | otp-060338c0a6904cc4aaf5226dc7fb321ad3d23862.tar.gz otp-060338c0a6904cc4aaf5226dc7fb321ad3d23862.tar.bz2 otp-060338c0a6904cc4aaf5226dc7fb321ad3d23862.zip |
[socket-nif] Preliminary windows adaptions
Added preliminary, and temporary, windows adaptions.
Basically they amount to letting all nif-callback functions
returning badarg for all calls if on windows (this has
been accomplished by if-defing the nif-code; if win32 then
badarg else do-something).
OTP-15526
Diffstat (limited to 'erts/emulator/test/socket_SUITE.erl')
-rw-r--r-- | erts/emulator/test/socket_SUITE.erl | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/erts/emulator/test/socket_SUITE.erl b/erts/emulator/test/socket_SUITE.erl index 803f06809b..012bff1a7b 100644 --- a/erts/emulator/test/socket_SUITE.erl +++ b/erts/emulator/test/socket_SUITE.erl @@ -1357,8 +1357,13 @@ ttest_ssockt_csockt_cases() -> %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% init_per_suite(Config) -> - ?LOGGER:start(), - Config. + case os:type() of + {win32, _} -> + not_yet_implemented(); + _ -> + ?LOGGER:start(), + Config + end. end_per_suite(_) -> ?LOGGER:stop(), |