diff options
author | Alexey Samsonov <samsonov@google.com> | 2013-08-07 09:31:28 +0000 |
---|---|---|
committer | Alexey Samsonov <samsonov@google.com> | 2013-08-07 09:31:28 +0000 |
commit | 15d5eefc6542044c04ff72b855be206774c76591 (patch) | |
tree | 9b1706df9befe012457fdc0c0c3b6be93c8cf833 /compiler-rt/lib | |
parent | 4431d2d566bb6d196318eb691af74bd8eb8db9dc (diff) | |
download | bcm5719-llvm-15d5eefc6542044c04ff72b855be206774c76591.tar.gz bcm5719-llvm-15d5eefc6542044c04ff72b855be206774c76591.zip |
Distinguish 32-bit ASan from 64-bit ASan in lit configs
llvm-svn: 187878
Diffstat (limited to 'compiler-rt/lib')
-rw-r--r-- | compiler-rt/lib/asan/lit_tests/lit.cfg | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler-rt/lib/asan/lit_tests/lit.cfg b/compiler-rt/lib/asan/lit_tests/lit.cfg index 1e78436e86f..815452dd916 100644 --- a/compiler-rt/lib/asan/lit_tests/lit.cfg +++ b/compiler-rt/lib/asan/lit_tests/lit.cfg @@ -11,7 +11,7 @@ def get_required_attr(config, attr_name): return attr_value # Setup config name. -config.name = 'AddressSanitizer' +config.name = 'AddressSanitizer' + config.bits # Setup source root. config.test_source_root = os.path.dirname(__file__) |