summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTushar Gohad <tushar.gohad@intel.com>2014-06-24 13:54:21 -0700
committerTushar Gohad <tushar.gohad@intel.com>2014-06-24 13:54:21 -0700
commit7655640718cc3c494ad50e6afabf64811da0aa88 (patch)
tree620bd1b28074bb08bca8a5bdc45851e8e7707950
parent7bc3b079bb9830336fd6485c6d1489a3b30bf345 (diff)
downloadpyeclib-7655640718cc3c494ad50e6afabf64811da0aa88.tar.gz
test_core: Minor fix to valgrind error message
Signed-off-by: Tushar Gohad <tushar.gohad@intel.com>
-rw-r--r--test/test_core.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_core.py b/test/test_core.py
index a49df3f..9a2bf28 100644
--- a/test/test_core.py
+++ b/test/test_core.py
@@ -81,7 +81,7 @@ class TestCore(unittest.TestCase):
if __name__ == "__main__":
if '_valgrind' in sys.argv[0]:
if (0 != os.system("which valgrind")):
- print("--valgrind option requires valgrind program installed")
+ print("You don't appear to have 'valgrind' installed")
sys.exit(-1)
run_under_valgrind = True
test_cmd_prefix = "valgrind --leak-check=full "