summaryrefslogtreecommitdiff
path: root/test/asan/lit.cfg
diff options
context:
space:
mode:
Diffstat (limited to 'test/asan/lit.cfg')
-rw-r--r--test/asan/lit.cfg2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/asan/lit.cfg b/test/asan/lit.cfg
index 7f47b43ed..c96cfaac3 100644
--- a/test/asan/lit.cfg
+++ b/test/asan/lit.cfg
@@ -4,7 +4,7 @@ import os
def get_required_attr(config, attr_name):
attr_value = getattr(config, attr_name, None)
- if not attr_value:
+ if attr_value == None:
lit_config.fatal(
"No attribute %r in test configuration! You may need to run "
"tests from your build directory or add this attribute "