mirror of
https://github.com/libsdl-org/SDL.git
synced 2026-06-18 20:18:59 +00:00
Removed invalid assert in testatomic
This commit is contained in:
parent
d5479d7b81
commit
8adab0b88a
1 changed files with 2 additions and 1 deletions
|
|
@ -232,7 +232,8 @@ static void RunEpicTest(void)
|
|||
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 */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue