summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAndrew Opalach <andrew@akon.city> 2024-04-09 11:17:46 -0400
committerAndrew Opalach <andrew@akon.city> 2024-04-09 11:17:46 -0400
commit7f7566324b18833d2868ea45e2b28dcdc547d879 (patch)
tree952b6ef9e391e6a3dca1a4337a023e83b1f92b7e /tests
parent4da4b06c8ae79370340a60ca83bd1f0206068ed3 (diff)
downloadlibalabaster-7f7566324b18833d2868ea45e2b28dcdc547d879.tar.gz
libalabaster-7f7566324b18833d2868ea45e2b28dcdc547d879.tar.bz2
libalabaster-7f7566324b18833d2868ea45e2b28dcdc547d879.zip
Update
- Separate al_str_c functions between compile-time and runtime - Remove volatile from atomics - Allow not specifying a section in the log - Cleanup Signed-off-by: Andrew Opalach <andrew@akon.city>
Diffstat (limited to 'tests')
-rw-r--r--tests/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/main.c b/tests/main.c
index 622e969..2d50d72 100644
--- a/tests/main.c
+++ b/tests/main.c
@@ -1,7 +1,7 @@
#include <al/lib.h>
#include "array.h"
-#ifdef HAVE_GNU_EXTENSIONS
+#ifdef AL_HAVE_GNU_EXTENSIONS
#include "array_typed.h"
#endif
#include "str.h"
@@ -10,7 +10,7 @@
s32 main(void)
{
if (!array_tests_run()) goto fail;
-#ifdef HAVE_GNU_EXTENSIONS
+#ifdef AL_HAVE_GNU_EXTENSIONS
if (!array_typed_tests_run()) goto fail;
#endif
if (!str_tests_run()) goto fail;