Browse Source

Merge branch 'master' of https://github.com/odin-lang/Odin

gingerBill 4 years ago
parent
commit
ff40e47042
2 changed files with 0 additions and 6 deletions
  1. 0 3
      tests/core/Makefile
  2. 0 3
      tests/core/build.bat

+ 0 - 3
tests/core/Makefile

@@ -8,12 +8,9 @@ download_test_assets:
 
 image_test:
 	$(ODIN) test image/test_core_image.odin
-	rm test_core_image
 
 compress_test:
 	$(ODIN) test compress/test_core_compress.odin
-	rm test_core_compress
 
 strings_test:
 	$(ODIN) test strings/test_core_strings.odin
-	rm test_core_strings

+ 0 - 3
tests/core/build.bat

@@ -6,16 +6,13 @@ echo ---
 echo Running core:image tests
 echo ---
 %PATH_TO_ODIN% test image    %COMMON%
-del image.exe
 
 echo ---
 echo Running core:compress tests
 echo ---
 %PATH_TO_ODIN% test compress %COMMON%
-del compress.exe
 
 echo ---
 echo Running core:strings tests
 echo ---
 %PATH_TO_ODIN% test strings %COMMON%
-del strings.exe