chore(test): remove incomplete thread test (#97)

This commit is contained in:
fallenoak 2025-11-20 21:53:16 -06:00 committed by GitHub
parent 931096bb50
commit d98b5dc45b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -46,14 +46,3 @@ TEST_CASE("SCritSect::Leave", "[thread]") {
SUCCEED(); SUCCEED();
} }
} }
TEST_CASE("SThread::Create", "[thread]") {
SECTION("creates new thread") {
SThread thread;
auto threadName = const_cast<char*>("TestThread");
auto threadParam = STORM_ALLOC(16);
REQUIRE(SThread::Create(threadProc, threadParam, thread, threadName, 0) != 0);
STORM_FREE(threadParam);
}
}