From 2530f6444bfad2bf67ee926e57df8987afeebf4a Mon Sep 17 00:00:00 2001 From: Ran Benita Date: Sat, 24 Sep 2022 10:30:00 +0300 Subject: build: reenable test-context in MSVC Signed-off-by: Ran Benita --- meson.build | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/meson.build b/meson.build index 26fca41..a834a7f 100644 --- a/meson.build +++ b/meson.build @@ -596,14 +596,11 @@ test( executable('test-filecomp', 'test/filecomp.c', dependencies: test_dep), env: test_env, ) -# TODO: This test currently uses some functions that don't exist on Windows. -if cc.get_id() != 'msvc' - test( - 'context', - executable('test-context', 'test/context.c', dependencies: test_dep), - env: test_env, - ) -endif +test( + 'context', + executable('test-context', 'test/context.c', dependencies: test_dep), + env: test_env, +) test( 'rules-file', executable('test-rules-file', 'test/rules-file.c', dependencies: test_dep), -- cgit v1.2.1