Removed invalid assert in testatomic

(cherry picked from commit 8adab0b88a)
This commit is contained in:
Sam Lantinga 2023-07-22 18:39:10 -07:00
parent 322dbdde4e
commit ba0c270c7a
1 changed files with 2 additions and 1 deletions

View File

@ -234,7 +234,8 @@ static void RunEpicTest()
v = SDL_AtomicGet(&good);
SDL_Log("Atomic %d Non-Atomic %d\n", v, bad);
SDL_assert(v == Expect);
SDL_assert(bad != Expect);
/* We can't guarantee that bad != Expect, this would happen on a single core system, for example. */
/*SDL_assert(bad != Expect);*/
}
/* End atomic operation test */