diff options
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")) |