From 1a1432592ab7df2959f19f59c0c966a3e8436da4 Mon Sep 17 00:00:00 2001 From: Krzosa Karol Date: Sat, 16 Mar 2024 11:45:53 +0100 Subject: [PATCH] Disable clang address sanitizer --- build_file.cpp | 1 - tests/test_main.cpp | 1 - 2 files changed, 2 deletions(-) diff --git a/build_file.cpp b/build_file.cpp index 466e189..dbd7ec5 100644 --- a/build_file.cpp +++ b/build_file.cpp @@ -58,7 +58,6 @@ int main(int argc, char **argv) { Array flags = {scratch}; flags += "-g -Wno-write-strings"; flags += "-fdiagnostics-absolute-paths"; - flags += "-fsanitize=address"; if (is_cpp) flags += "-fno-exceptions"; if (is_cpp) flags += "-fno-rtti"; if (is_cpp) flags += "-std=c++11"; diff --git a/tests/test_main.cpp b/tests/test_main.cpp index ae7bf09..80e1270 100644 --- a/tests/test_main.cpp +++ b/tests/test_main.cpp @@ -20,7 +20,6 @@ int main() { TestBootstrapExclusive(); TestBootstrapArenaClear(); - // @todo: github worker fails on this: TestClexer(); // Unicode iteration over codepoints using For