From d98b5dc45b889c27f8a551eaeca98293231dabac Mon Sep 17 00:00:00 2001 From: fallenoak Date: Thu, 20 Nov 2025 21:53:16 -0600 Subject: [PATCH] chore(test): remove incomplete thread test (#97) --- test/Thread.cpp | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/test/Thread.cpp b/test/Thread.cpp index 0eafb88..6fd32a0 100644 --- a/test/Thread.cpp +++ b/test/Thread.cpp @@ -46,14 +46,3 @@ TEST_CASE("SCritSect::Leave", "[thread]") { SUCCEED(); } } - -TEST_CASE("SThread::Create", "[thread]") { - SECTION("creates new thread") { - SThread thread; - auto threadName = const_cast("TestThread"); - auto threadParam = STORM_ALLOC(16); - REQUIRE(SThread::Create(threadProc, threadParam, thread, threadName, 0) != 0); - - STORM_FREE(threadParam); - } -}