diff options
author | Benoit Germain <benoit.germain@ubisoft.com> | 2025-04-15 12:00:23 +0200 |
---|---|---|
committer | Benoit Germain <benoit.germain@ubisoft.com> | 2025-04-15 12:00:23 +0200 |
commit | c0ac37c79f3d9fbc12b99541f58caaca8667182c (patch) | |
tree | e943eaff22945dd2941773f7b0ed73ce27d43cd0 /Makefile | |
parent | 9cc30ff72ba25ceb3a1fdef0d8c4a6efc910d777 (diff) | |
download | lanes-c0ac37c79f3d9fbc12b99541f58caaca8667182c.tar.gz lanes-c0ac37c79f3d9fbc12b99541f58caaca8667182c.tar.bz2 lanes-c0ac37c79f3d9fbc12b99541f58caaca8667182c.zip |
Fix some tests (kinda)
* split tasking_cancelling in two
* add a timer in basic and tasking_cancelling as a temporary workaround for a deadlock in mingw ucrt64 builds
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -80,12 +80,12 @@ build_DUE: | |||
80 | run_unit_tests: build_lanes build_unit_tests build_DUE | 80 | run_unit_tests: build_lanes build_unit_tests build_DUE |
81 | @echo ========================================================================================= | 81 | @echo ========================================================================================= |
82 | $(_PREFIX) $(_UNITTEST_TARGET) --list-tests | 82 | $(_PREFIX) $(_UNITTEST_TARGET) --list-tests |
83 | $(_PREFIX) $(_UNITTEST_TARGET) --rng-seed 0 -s | 83 | $(_PREFIX) $(_UNITTEST_TARGET) --rng-seed 0 -s scripted_tests.lane.tasking_cancelling |
84 | 84 | ||
85 | debug_unit_tests: build_lanes build_unit_tests build_DUE | 85 | debug_unit_tests: build_lanes build_unit_tests build_DUE |
86 | @echo ========================================================================================= | 86 | @echo ========================================================================================= |
87 | $(_PREFIX) $(_UNITTEST_TARGET) --list-tests | 87 | $(_PREFIX) $(_UNITTEST_TARGET) --list-tests |
88 | $(_PREFIX) gdb --args $(_UNITTEST_TARGET) --list-tests --rng-seed 0 -s "scripted_tests.legacy.basic" | 88 | $(_PREFIX) gdb --args $(_UNITTEST_TARGET) --rng-seed 0 -s scripted_tests.lane.tasking_cancelling |
89 | 89 | ||
90 | clean: | 90 | clean: |
91 | cd src && $(MAKE) -f Lanes.makefile clean | 91 | cd src && $(MAKE) -f Lanes.makefile clean |