aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorBenoit Germain <benoit.germain@ubisoft.com>2025-04-07 08:50:10 +0200
committerBenoit Germain <benoit.germain@ubisoft.com>2025-04-07 08:50:10 +0200
commit98351dc6e48dabc02a941872b0aad7f795e665bd (patch)
treeaaa37853fca9437759dd2312debfed585700a608 /Makefile
parent5e29202b78d4932db079b21f0324ea57d8902bda (diff)
downloadlanes-98351dc6e48dabc02a941872b0aad7f795e665bd.tar.gz
lanes-98351dc6e48dabc02a941872b0aad7f795e665bd.tar.bz2
lanes-98351dc6e48dabc02a941872b0aad7f795e665bd.zip
Fix crash with multi keepers (invalid memory access on close)
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 7200939..5b5d27a 100644
--- a/Makefile
+++ b/Makefile
@@ -79,7 +79,13 @@ build_DUE:
79# also run a test that shows whether lanes is successfully loaded or not 79# also run a test that shows whether lanes is successfully loaded or not
80run_unit_tests: build_lanes build_unit_tests build_DUE 80run_unit_tests: build_lanes build_unit_tests build_DUE
81 @echo ========================================================================================= 81 @echo =========================================================================================
82 $(_PREFIX) $(_UNITTEST_TARGET) -s 82 $(_PREFIX) $(_UNITTEST_TARGET) --list-tests
83 $(_PREFIX) $(_UNITTEST_TARGET) --rng-seed 0 -s
84
85debug_unit_tests: build_lanes build_unit_tests build_DUE
86 @echo =========================================================================================
87 $(_PREFIX) $(_UNITTEST_TARGET) --list-tests
88 $(_PREFIX) gdb --args $(_UNITTEST_TARGET) --rng-seed 0 -s "lanes.configure.nb_user_keepers"
83 89
84clean: 90clean:
85 cd src && $(MAKE) -f Lanes.makefile clean 91 cd src && $(MAKE) -f Lanes.makefile clean