diff options
author | Claudius "keldu" Holeksa <mail@keldu.de> | 2025-06-17 14:41:12 +0200 |
---|---|---|
committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2025-06-17 14:41:12 +0200 |
commit | 4a85d662012360fecffc9b0e58a582204f631957 (patch) | |
tree | 5e87d8d385742824d9ffe1ef76d01e3257a0e80e /modules/core/tests | |
parent | 76409ba8c1a57c9be68baf2d2c480673eb186eda (diff) |
Rewriting parts to avoid infinite recursion in flat index call
Diffstat (limited to 'modules/core/tests')
-rw-r--r-- | modules/core/tests/SConscript | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/modules/core/tests/SConscript b/modules/core/tests/SConscript index b14b75d..b35f238 100644 --- a/modules/core/tests/SConscript +++ b/modules/core/tests/SConscript @@ -12,6 +12,10 @@ dir_path = Dir('.').abspath # Environment for base library test_cases_env = env.Clone(); +test_cases_env.Append(CCFLAGS=['-g']); +# test_cases_env.Append(CCFLAGS=['-fsanitize=address','-g']); +# test_cases_env.Append(LINKFLAGS=['-fsanitize=address']); + test_cases_env.sources = sorted(glob.glob(dir_path + "/*.cpp")) test_cases_env.headers = sorted(glob.glob(dir_path + "/*.hpp")) |