2023-12-06 17:43:39 -05:00
|
|
|
{
|
|
|
|
"diagnostics": {
|
|
|
|
"asan": { "definitions": ["ASMJIT_SANITIZE=address"] },
|
2024-06-17 19:04:36 -04:00
|
|
|
"ubsan": { "definitions": ["ASMJIT_SANITIZE=undefined"] },
|
|
|
|
"msan": { "definitions": ["ASMJIT_SANITIZE=memory"] }
|
2023-12-06 17:43:39 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
"valgrind_arguments": [
|
|
|
|
"--leak-check=full",
|
|
|
|
"--show-reachable=yes",
|
|
|
|
"--track-origins=yes"
|
|
|
|
],
|
|
|
|
|
|
|
|
"tests": [
|
2024-06-17 19:04:36 -04:00
|
|
|
{ "optional": true, "cmd": ["asmjit_test_unit", "--quick"] },
|
|
|
|
{ "optional": true, "cmd": ["asmjit_test_assembler"] },
|
|
|
|
{ "optional": true, "cmd": ["asmjit_test_assembler", "--validate"] },
|
|
|
|
{ "optional": true, "cmd": ["asmjit_test_emitters"] },
|
|
|
|
{ "optional": true, "cmd": ["asmjit_test_execute"] },
|
|
|
|
{ "optional": true, "cmd": ["asmjit_test_compiler"] },
|
|
|
|
{ "optional": true, "cmd": ["asmjit_test_instinfo"] },
|
|
|
|
{ "optional": true, "cmd": ["asmjit_test_x86_sections"] },
|
|
|
|
{ "optional": true, "cmd": ["asmjit_test_perf", "--quick"] }
|
2023-12-06 17:43:39 -05:00
|
|
|
]
|
2024-06-17 19:04:36 -04:00
|
|
|
}
|