You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Following up on the merge of #999 the memcount internal mechanism of memory accounting in zenroom is removed in favor of ASAN reporting.
Therefore we should promote the ASAN tests to CI to monitor the memory handling.
To do this we need to create a check-asan test target that runs only tests that currently work under ASAN, which are the vast majority, excluding:
lua/native: events.lua
for a division by zero which is puzzling but does not affects us since we do not use co-routines
zencode_then (test/zencode/then.bats)
not ok 15 String dictionary with float and time
(in test file /home/jrml/devel/zenroom/test/zencode/then.bats, line 265)
src/zen_time.c:174:11: runtime error: 1.23457e+10 is outside the range of representable values of type 'int' in detect_time_value src/zen_time.c:174
api_hash (all API tests)
`LD_LIBRARY_PATH=$R ./hash_init sha512 > ctx_sha512' failed with status 134
ASan runtime does not come first in initial library list; you should either link runtime to your application or manually preload it with LD_PRELOAD.
zencode w3c
zencode_w3c TIMEOUT 59.81s killed by signal 15 SIGTERM
The text was updated successfully, but these errors were encountered:
Following up on the merge of #999 the memcount internal mechanism of memory accounting in zenroom is removed in favor of ASAN reporting.
Therefore we should promote the ASAN tests to CI to monitor the memory handling.
To do this we need to create a
check-asan
test target that runs only tests that currently work under ASAN, which are the vast majority, excluding:lua/native: events.lua
for a division by zero which is puzzling but does not affects us since we do not use co-routines
zencode_then (test/zencode/then.bats)
not ok 15 String dictionary with float and time
(in test file /home/jrml/devel/zenroom/test/zencode/then.bats, line 265)
src/zen_time.c:174:11: runtime error: 1.23457e+10 is outside the range of representable values of type 'int' in detect_time_value src/zen_time.c:174
api_hash (all API tests)
`LD_LIBRARY_PATH=$R ./hash_init sha512 > ctx_sha512' failed with status 134
ASan runtime does not come first in initial library list; you should either link runtime to your application or manually preload it with LD_PRELOAD.
zencode w3c
zencode_w3c TIMEOUT 59.81s killed by signal 15 SIGTERM
The text was updated successfully, but these errors were encountered: