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-08-05 08:23:31 -0700
commitee079b43b04907346ff86cdc5332f246e72a3ec0 (patch)
tree0d3d4a6b1282b4a58406fbd21b48a1adf91c2107
parent5247068637d1fa652736323346864a183376aa6c (diff)
downloadpyeclib-ee079b43b04907346ff86cdc5332f246e72a3ec0.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 7bef3ef..d3a3cb5 100644
--- a/test/test_core.py
+++ b/test/test_core.py
@@ -158,7 +158,7 @@ class TestCoreValgrind(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 "