does it fail with ASAN disabled?

This commit is contained in:
Matthew Kennedy 2024-03-17 03:13:28 -07:00
parent 79abdbc0d3
commit 362e681dcb
2 changed files with 11 additions and 8 deletions

View File

@ -42,7 +42,8 @@ jobs:
- name: Run Tests
working-directory: ./unit_tests/
run: ASAN_OPTIONS=detect_stack_use_after_return=1 build/fome_test
#run: ASAN_OPTIONS=detect_stack_use_after_return=1 build/fome_test
run: build/fome_test
- name: Set FTP variables
env:

View File

@ -17,13 +17,15 @@ include $(PROJECT_DIR)/rusefi_rules.mk
BOARDS_DIR = $(PROJECT_DIR)/config/boards
# User may want to pass in a forced value for SANITIZE
ifeq ($(SANITIZE),)
ifneq ($(OS),Windows_NT)
SANITIZE = yes
else
# ifeq ($(SANITIZE),)
# ifneq ($(OS),Windows_NT)
# SANITIZE = yes
# else
# SANITIZE = no
# endif
# endif
SANITIZE = no
endif
endif
IS_MAC = no
ifneq ($(OS),Windows_NT)