#if 0 /* SRC=${0##*./} BIN=${SRC%.*} gcc \ -Wall -Wextra -Werror -pedantic \ -Wno-missing-braces \ -Wno-old-style-declaration \ -Wno-overlength-strings \ -Wno-unused-parameter \ -Wno-unused-variable \ -Wno-unused-but-set-variable \ -Wno-unused-function \ -O3 -D NDEBUG \ -fsanitize=undefined,address,leak \ -lm \ -o $BIN $SRC && \ ./$BIN $@ STATUS=$? rm -f $BIN exit $STATUS # */ #endif #ifndef EVERY_TEST_SUITE #define EVERY_TEST_SUITE #endif #define ENABLE_X11 0 #define ENABLE_WAYLAND 0 #define ENABLE_ALSA 0 #include "runtime.c" #include "graphics.c" #include "stackless_coroutine.c" i32 main(i32 argc, c8 **argv) { return run_tests(argc, argv); }