From eb184eb0b18ef854e4992327ea9520db941a3e8d Mon Sep 17 00:00:00 2001 From: "Michael Gene Brockus (Dreamer)" Date: Wed, 18 Sep 2024 12:59:50 -0600 Subject: [PATCH] becuse windows is being itself --- code/tests/test_command.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/code/tests/test_command.c b/code/tests/test_command.c index 20ca0fd..6f80139 100644 --- a/code/tests/test_command.c +++ b/code/tests/test_command.c @@ -118,12 +118,15 @@ FOSSIL_TEST(test_fossil_command_erase_exists) { // * * * * * * * * * * * * * * * * * * * * * * * * // * Fossil Logic Test Pool // * * * * * * * * * * * * * * * * * * * * * * * * - FOSSIL_TEST_GROUP(c_command_tests) { +#ifdef __unix__ ADD_TEST(test_fossil_command); ADD_TEST(test_fossil_command_success); ADD_TEST(test_fossil_command_output); ADD_TEST(test_fossil_command_exists); ADD_TEST(test_fossil_command_strcat_safe); ADD_TEST(test_fossil_command_erase_exists); -} +#else + (void)test_env; // test cases need to be updated to adress the Windows platform +#endif +} \ No newline at end of file