about summary refs log tree commit diff homepage
path: root/test/lit.site.cfg.in
diff options
context:
space:
mode:
authorMartin Nowack <m.nowack@imperial.ac.uk>2023-03-20 17:50:30 +0000
committerCristian Cadar <c.cadar@imperial.ac.uk>2023-03-22 17:02:03 +0000
commit5c8610ec5e6fd54746b2934bcb0a4d63ef20b0bf (patch)
tree2b8f8fbe82f4c5fa56dc52c1524dc42edb90fce9 /test/lit.site.cfg.in
parent1398e960ec9aca3f0ceac5e37062631986b9c2a8 (diff)
downloadklee-5c8610ec5e6fd54746b2934bcb0a4d63ef20b0bf.tar.gz
Explicitly check if 32bit support is enabled for testing
Ignore test in the first place, if no 32bit is enabled.
Diffstat (limited to 'test/lit.site.cfg.in')
-rw-r--r--test/lit.site.cfg.in1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/lit.site.cfg.in b/test/lit.site.cfg.in
index 849062b1..c7063057 100644
--- a/test/lit.site.cfg.in
+++ b/test/lit.site.cfg.in
@@ -38,6 +38,7 @@ config.enable_zlib = True if @HAVE_ZLIB_H@ == 1 else False
 config.have_asan = True if @IS_ASAN_BUILD@ == 1 else False
 config.have_ubsan = True if @IS_UBSAN_BUILD@ == 1 else False
 config.have_msan = True if @IS_MSAN_BUILD@ == 1 else False
+config.have_32bit_support = True if @M32_SUPPORTED@ == 1 else False
 
 # Add sanitizer list
 config.environment['LSAN_OPTIONS'] = "suppressions=@KLEE_UTILS_DIR@/sanitizers/lsan.txt"