diff options
author | Vinson Lee <vlee@vmware.com> | 2010-12-02 23:06:22 -0800 |
---|---|---|
committer | Vinson Lee <vlee@vmware.com> | 2010-12-02 23:06:22 -0800 |
commit | 04b3381d6a79981c4395d578e9172d09cdb8331e (patch) | |
tree | 03ea17ed35ed00e8240c82b60aff0d79f5525f19 /tests | |
parent | dd5d2c2c0ef9778693a6e896a3249b96fd6281ff (diff) |
all.tests: Fix tests not being run through valgrind.
ValgrindExecTest was running the original test command again and not the
original command through valgrind.
This issue was introduced by commit
7b26b69246cfcdf644141ba043648292ded279fd.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/all.tests | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/all.tests b/tests/all.tests index 6e2fe24c9..91901497b 100644 --- a/tests/all.tests +++ b/tests/all.tests @@ -1462,7 +1462,7 @@ class ValgrindExecTest(PlainExecTest): assert(self.orig_test.result['result'] == 'fail') return self.orig_test.result self.command = [os.path.dirname(__file__) + '/valgrind-test/valgrind-test'] + orig_command - return self.orig_test.run() + return PlainExecTest.run(self) valgrind = Group() for groupname, group in sorted(profile.tests.iteritems()): |