From 93d9b1ed9356c258d9ab5e90550d8b920f85ce32 Mon Sep 17 00:00:00 2001 From: Cory McWilliams Date: Sun, 31 Dec 2023 03:24:20 +0000 Subject: [PATCH] I think we can assume curl on all platforms for tests. git-svn-id: https://www.unprompted.com/svn/projects/tildefriends/trunk@4718 ed5197a5-7fde-0310-b194-c3ffbd925b24 --- src/tests.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/tests.c b/src/tests.c index 86235ce4..0056c9be 100644 --- a/src/tests.c +++ b/src/tests.c @@ -683,7 +683,6 @@ static void _test_http_async(uv_async_t* async) static void _test_http_thread(void* data) { -#if defined(__linux__) test_http_t* test = data; int r = system("curl -v http://localhost:23456/404"); assert(WEXITSTATUS(r) == 0); @@ -705,7 +704,6 @@ static void _test_http_thread(void* data) /* All to wake up the loop. */ uv_async_send(&test->async); -#endif } static void _test_http_handler(tf_http_request_t* request)