aboutsummaryrefslogtreecommitdiffstats
path: root/erts
diff options
context:
space:
mode:
authorSverker Eriksson <[email protected]>2017-02-16 14:42:24 +0100
committerSverker Eriksson <[email protected]>2017-02-20 20:07:16 +0100
commitd7abb5e2efc5dfd0f100b9a8978bc9e87e15cd2d (patch)
treeb43a9bc5f5be67185a42876cc3c343fcfe3efa89 /erts
parent28e6aeb8c0cc0e8b8821be957e3ee9c1eb015de6 (diff)
downloadotp-d7abb5e2efc5dfd0f100b9a8978bc9e87e15cd2d.tar.gz
otp-d7abb5e2efc5dfd0f100b9a8978bc9e87e15cd2d.tar.bz2
otp-d7abb5e2efc5dfd0f100b9a8978bc9e87e15cd2d.zip
erts: Skip nif_SUITE:select on windows
for now...
Diffstat (limited to 'erts')
-rw-r--r--erts/emulator/test/nif_SUITE.erl7
-rw-r--r--erts/emulator/test/nif_SUITE_data/nif_SUITE.c15
2 files changed, 19 insertions, 3 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.
diff --git a/erts/emulator/test/nif_SUITE_data/nif_SUITE.c b/erts/emulator/test/nif_SUITE_data/nif_SUITE.c
index 4f003d11f5..69c5f09bd5 100644
--- a/erts/emulator/test/nif_SUITE_data/nif_SUITE.c
+++ b/erts/emulator/test/nif_SUITE_data/nif_SUITE.c
@@ -23,10 +23,10 @@
#include <string.h>
#include <assert.h>
#include <limits.h>
+#include <errno.h>
#ifndef __WIN32__
#include <unistd.h>
#include <fcntl.h>
-#include <errno.h>
#endif
#include "nif_mod.h"
@@ -143,7 +143,7 @@ static ErlNifResourceTypeInit fd_rt_init = {
fd_resource_stop
};
struct fd_resource {
- int fd;
+ ErlNifEvent fd;
int was_selected;
ErlNifPid pid;
};
@@ -2144,7 +2144,7 @@ static ERL_NIF_TERM select_nif(ErlNifEnv* env, int argc, const ERL_NIF_TERM argv
int retval;
if (!get_fd(env, argv[0], &fdr)
- || !enif_get_uint(env, argv[1], &mode)
+ || !enif_get_uint(env, argv[1], (unsigned int*)&mode)
|| !enif_get_resource(env, argv[2], fd_resource_type, &obj))
{
return enif_make_badarg(env);
@@ -2164,6 +2164,7 @@ static ERL_NIF_TERM select_nif(ErlNifEnv* env, int argc, const ERL_NIF_TERM argv
return enif_make_int(env, retval);
}
+#ifndef __WIN32__
static ERL_NIF_TERM pipe_nif(ErlNifEnv* env, int argc, const ERL_NIF_TERM argv[])
{
struct fd_resource* read_rsrc;
@@ -2274,15 +2275,21 @@ static ERL_NIF_TERM is_closed_nif(ErlNifEnv* env, int argc, const ERL_NIF_TERM a
return fdr->fd < 0 ? atom_true : atom_false;
}
+#endif /* !__WIN32__ */
+
static void fd_resource_dtor(ErlNifEnv* env, void* obj)
{
struct fd_resource* fdr = (struct fd_resource*)obj;
resource_dtor(env, obj);
+#ifdef __WIN32__
+ abort();
+#else
if (fdr->fd >= 0) {
assert(!fdr->was_selected);
close(fdr->fd);
}
+#endif
}
static struct {
@@ -2924,10 +2931,12 @@ static ErlNifFunc nif_funcs[] =
{"port_command_nif", 2, port_command},
{"format_term_nif", 2, format_term},
{"select_nif", 5, select_nif},
+#ifndef __WIN32__
{"pipe_nif", 0, pipe_nif},
{"write_nif", 2, write_nif},
{"read_nif", 2, read_nif},
{"is_closed_nif", 1, is_closed_nif},
+#endif
{"last_fd_stop_call", 0, last_fd_stop_call},
{"alloc_monitor_resource_nif", 0, alloc_monitor_resource_nif},
{"monitor_process_nif", 4, monitor_process_nif},