From f967d46b65329dd1a03151d5904ffe40e8467b2c Mon Sep 17 00:00:00 2001 From: Ran Benita Date: Fri, 27 Dec 2019 15:47:15 +0200 Subject: [PATCH] test/context: use a more portable directory-exists check MSVC doesn't have opendir/closedir. Signed-off-by: Ran Benita --- test/context.c | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/test/context.c b/test/context.c index 150491b..13d47a1 100644 --- a/test/context.c +++ b/test/context.c @@ -28,9 +28,9 @@ #include "test.h" #include "context.h" -#include #include -#include +#include +#include /* keeps a cache of all makedir/maketmpdir directories so we can free and * rmdir them in one go, see unmakedirs() */ @@ -150,15 +150,16 @@ test_config_root_include_path_fallback(void) const char *xkbdir = DFLT_XKB_CONFIG_ROOT; const char *context_path; int nincludes; - DIR *dir; /* quick and dirty check that the default directory exists. * It may not on a vanilla test box if we just run the test * suite, so where it's not there just skip this test. */ - dir = opendir(xkbdir); - if (!dir) + struct stat stat_buf; + int err = stat(xkbdir, &stat_buf); + if (err != 0) + return; + if (!S_ISDIR(stat_buf.st_mode)) return; - closedir(dir); buffer_env("XKB_CONFIG_ROOT"); buffer_env("HOME"); -- 2.7.4