Skip to content

Commit

Permalink
Fixed test scripts running unittest multiple times
Browse files Browse the repository at this point in the history
  • Loading branch information
aardappel committed Oct 8, 2024
1 parent 64c7082 commit 60eb237
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dev/lobster/test_all_compile_only_verbose_no_projects.bat
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@rem @echo off
@cls
@for /R ..\.. %%F in (modules\*.lobster) do @(@start /B ..\..\bin\lobster.exe --compile-only %%F)
@for /R ..\.. %%F in (tests\*.lobster) do @(@start /B ..\..\bin\lobster.exe --compile-only %%F)
@for /R ..\.. %%F in (samples\*.lobster) do @(@start /B ..\..\bin\lobster.exe --compile-only %%F)
@start /B ..\..\bin\lobster.exe --compile-only ..\..\tests\unittest.lobster
@for /R ..\..\modules\ %%F in (*.lobster) do @(@start /B ..\..\bin\lobster.exe --compile-only %%F)
@for /R ..\..\samples\ %%F in (*.lobster) do @(@start /B ..\..\bin\lobster.exe --compile-only %%F)
@pause
1 change: 1 addition & 0 deletions dev/lobster/test_all_no_projects.bat
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
@rem @echo off
@cls
@start /B ..\..\bin\lobster.exe --non-interactive-test --silent ..\..\tests\unittest.lobster
@for /R ..\.. %%F in (modules\*.lobster) do @(@start /B ..\..\bin\lobster.exe --non-interactive-test --silent %%F)
@for /R ..\.. %%F in (tests\*.lobster) do @(@start /B ..\..\bin\lobster.exe --non-interactive-test --silent %%F)
@for /R ..\.. %%F in (samples\*.lobster) do @(@start /B ..\..\bin\lobster.exe --non-interactive-test --silent %%F)
Expand Down

0 comments on commit 60eb237

Please sign in to comment.