diff options
| author | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2024-05-10 17:05:18 +0200 |
|---|---|---|
| committer | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2024-05-10 17:05:18 +0200 |
| commit | 2250eb3e78eb38d22c0e8c288f82e6ded20b3cfe (patch) | |
| tree | 743bb1e3d26e97b4676aaadbda1c4b6ffcb62cad /tests | |
| parent | aebb5a51782b7ea1811f5c54cc1404460b24b735 (diff) | |
Enable core:fmt tests.dev-2024-05
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/core/Makefile | 5 | ||||
| -rw-r--r-- | tests/core/build.bat | 7 |
2 files changed, 9 insertions, 3 deletions
diff --git a/tests/core/Makefile b/tests/core/Makefile index 12047f0ff..8996e2241 100644 --- a/tests/core/Makefile +++ b/tests/core/Makefile @@ -25,7 +25,8 @@ all: c_libc_test \ strings_test \ thread_test \ runtime_test \ - time_test + time_test \ + fmt_test download_test_assets: $(PYTHON) download_assets.py @@ -100,4 +101,4 @@ runtime_test: $(ODIN) run runtime $(COMMON) -out:test_core_runtime time_test: - $(ODIN) run time $(COMMON) -out:test_core_time + $(ODIN) run time $(COMMON) -out:test_core_time
\ No newline at end of file diff --git a/tests/core/build.bat b/tests/core/build.bat index 36d2bb9c4..5dd2d1932 100644 --- a/tests/core/build.bat +++ b/tests/core/build.bat @@ -107,4 +107,9 @@ echo --- echo --- echo Running core:time tests echo --- -%PATH_TO_ODIN% run time %COMMON% %COLLECTION% -out:test_core_time.exe || exit /b
\ No newline at end of file +%PATH_TO_ODIN% run time %COMMON% %COLLECTION% -out:test_core_time.exe || exit /b + +echo --- +echo Running core:fmt tests +echo --- +%PATH_TO_ODIN% run fmt %COMMON% %COLLECTION% -out:test_core_fmt.exe || exit /b
\ No newline at end of file |