|
@@ -2,7 +2,7 @@ ODIN=../../odin
|
|
|
PYTHON=$(shell which python3)
|
|
|
|
|
|
all: download_test_assets image_test compress_test strings_test hash_test crypto_test noise_test encoding_test \
|
|
|
- math_test linalg_glsl_math_test filepath_test reflect_test
|
|
|
+ math_test linalg_glsl_math_test filepath_test reflect_test os_exit_test
|
|
|
|
|
|
download_test_assets:
|
|
|
$(PYTHON) download_assets.py
|
|
@@ -41,3 +41,6 @@ filepath_test:
|
|
|
|
|
|
reflect_test:
|
|
|
$(ODIN) run reflect/test_core_reflect.odin -out=test_core_reflect -collection:tests=..
|
|
|
+
|
|
|
+os_exit_test:
|
|
|
+ $(ODIN) run os/test_core_os_exit.odin -out=test_core_os_exit && exit 1 || exit 0
|