mirror of
https://github.com/odin-lang/Odin.git
synced 2026-01-01 19:02:13 +00:00
I verified the PR by running the entire test suite of Odin itself with `-sanitize:address` and also the ols test suite (which caused unique problems before). A test has also been added with some problematic code, Windows seems to have problems with asan in CI or in general so it is not ran there. The LB_ABI_COMPUTE_RETURN_TYPES block has been removed entirely because it was unused, I got pretty confused why it didn't effect anything at first. Fixes #3211
19 lines
438 B
Makefile
19 lines
438 B
Makefile
ODIN=../../odin
|
|
|
|
all: rtti_test map_test pow_test 128_test asan_test
|
|
|
|
rtti_test:
|
|
$(ODIN) run test_rtti.odin -file -vet -strict-style -o:minimal
|
|
|
|
map_test:
|
|
$(ODIN) run test_map.odin -file -vet -strict-style -o:minimal
|
|
|
|
pow_test:
|
|
$(ODIN) run test_pow.odin -file -vet -strict-style -o:minimal
|
|
|
|
128_test:
|
|
$(ODIN) run test_128.odin -file -vet -strict-style -o:minimal
|
|
|
|
asan_test:
|
|
$(ODIN) run test_asan.odin -file -sanitize:address -debug
|