summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2012-10-19 20:29:30 +0000
committerDaniel Dunbar <daniel@zuster.org>2012-10-19 20:29:30 +0000
commit6b283ea9457bf69f26c097ca66fe6c41d10a29d2 (patch)
tree768d5e35d53de62e4ce3e9c45ccd1b4c265123f0 /utils
parentf793fbc5698263e045661cab3fb06144c66cc1db (diff)
downloadllvm-6b283ea9457bf69f26c097ca66fe6c41d10a29d2.tar.gz
llvm-6b283ea9457bf69f26c097ca66fe6c41d10a29d2.tar.bz2
llvm-6b283ea9457bf69f26c097ca66fe6c41d10a29d2.tar.xz
lit: Rename the valgrind leaks feature to match what is currently used
(vg_leak). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@166306 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils')
-rw-r--r--utils/lit/lit/TestingConfig.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/lit/lit/TestingConfig.py b/utils/lit/lit/TestingConfig.py
index 192e140538..a1f79a3bfc 100644
--- a/utils/lit/lit/TestingConfig.py
+++ b/utils/lit/lit/TestingConfig.py
@@ -34,7 +34,7 @@ class TestingConfig:
if litConfig.useValgrind:
available_features.append('valgrind')
if litConfig.valgrindLeakCheck:
- available_features.append('valgrind-leaks')
+ available_features.append('vg_leak')
config = TestingConfig(parent,
name = '<unnamed>',