diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/lilv_test.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/lilv_test.c b/test/lilv_test.c index 72a7f43..3dc3336 100644 --- a/test/lilv_test.c +++ b/test/lilv_test.c @@ -1570,6 +1570,7 @@ lilv_make_path(LV2_State_Make_Path_Handle handle, return lilv_path_join(temp_dir, path); } +#ifndef _WIN32 static int test_state(void) { @@ -1903,6 +1904,7 @@ test_state(void) cleanup_uris(); return 1; } +#endif /*****************************************************************************/ @@ -2260,7 +2262,10 @@ static struct TestCase tests[] = { TEST_CASE(bad_port_index), TEST_CASE(string), TEST_CASE(world), + // FIXME: State is not currently working on Windows +#ifndef _WIN32 TEST_CASE(state), +#endif TEST_CASE(reload_bundle), TEST_CASE(replace_version), TEST_CASE(get_symbol), |