diff options
author | Sverker Eriksson <[email protected]> | 2017-02-16 14:42:24 +0100 |
---|---|---|
committer | Sverker Eriksson <[email protected]> | 2017-02-20 20:07:16 +0100 |
commit | d7abb5e2efc5dfd0f100b9a8978bc9e87e15cd2d (patch) | |
tree | b43a9bc5f5be67185a42876cc3c343fcfe3efa89 /erts/emulator/test/nif_SUITE.erl | |
parent | 28e6aeb8c0cc0e8b8821be957e3ee9c1eb015de6 (diff) | |
download | otp-d7abb5e2efc5dfd0f100b9a8978bc9e87e15cd2d.tar.gz otp-d7abb5e2efc5dfd0f100b9a8978bc9e87e15cd2d.tar.bz2 otp-d7abb5e2efc5dfd0f100b9a8978bc9e87e15cd2d.zip |
erts: Skip nif_SUITE:select on windows
for now...
Diffstat (limited to 'erts/emulator/test/nif_SUITE.erl')
-rw-r--r-- | erts/emulator/test/nif_SUITE.erl | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/erts/emulator/test/nif_SUITE.erl b/erts/emulator/test/nif_SUITE.erl index 8439b28010..c1d9632fb5 100644 --- a/erts/emulator/test/nif_SUITE.erl +++ b/erts/emulator/test/nif_SUITE.erl @@ -128,6 +128,13 @@ init_per_testcase(hipe, Config) -> undefined -> {skip, "HiPE is disabled"}; _ -> Config end; +init_per_testcase(select, Config) -> + case os:type() of + {win32,_} -> + {skip, "Test not yet implemented for windows"}; + _ -> + Config + end; init_per_testcase(_Case, Config) -> Config. |