diff options
| author | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2022-04-29 18:13:46 +0200 |
|---|---|---|
| committer | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2022-04-29 18:13:46 +0200 |
| commit | 36263399a0159d9ca3a109b50542638264e5642b (patch) | |
| tree | fe4d2b760f1040621d648227aa63840d64e2b9a3 /tests | |
| parent | ff0f0c447fb52b5836edb603e1fb8c3ae4ed4b50 (diff) | |
[i18n] Enable i18n test on Linux.
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/core/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/core/Makefile b/tests/core/Makefile index 1405ae5c6..5c2918e30 100644 --- a/tests/core/Makefile +++ b/tests/core/Makefile @@ -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 os_exit_test + math_test linalg_glsl_math_test filepath_test reflect_test os_exit_test i18n_test download_test_assets: $(PYTHON) download_assets.py @@ -44,4 +44,7 @@ reflect_test: $(ODIN) run reflect/test_core_reflect.odin -file -collection:tests=.. -out:test_core_reflect os_exit_test: - $(ODIN) run os/test_core_os_exit.odin -file -out:test_core_os_exit && exit 1 || exit 0
\ No newline at end of file + $(ODIN) run os/test_core_os_exit.odin -file -out:test_core_os_exit && exit 1 || exit 0 + +i18n_test: + $(ODIN) run text/i18n -out:test_core_i18n
\ No newline at end of file |