summaryrefslogtreecommitdiff
path: root/test/LedgerHarness.py
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2012-02-17 14:05:12 -0600
committerJohn Wiegley <johnw@newartisans.com>2012-02-17 15:18:20 -0600
commit06cb20aaa8424ab668fddd3f5a2286b65186ef1d (patch)
tree3a94462acacfa89a7135bffa964fc57eff60cb7f /test/LedgerHarness.py
parentc3a9a7d2c584a7651426b3516f4e9991c8063e02 (diff)
downloadfork-ledger-06cb20aaa8424ab668fddd3f5a2286b65186ef1d.tar.gz
fork-ledger-06cb20aaa8424ab668fddd3f5a2286b65186ef1d.tar.bz2
fork-ledger-06cb20aaa8424ab668fddd3f5a2286b65186ef1d.zip
Simplify test for GuardMalloc
Diffstat (limited to 'test/LedgerHarness.py')
-rwxr-xr-xtest/LedgerHarness.py8
1 files changed, 1 insertions, 7 deletions
diff --git a/test/LedgerHarness.py b/test/LedgerHarness.py
index 48d038ba..c0dbe368 100755
--- a/test/LedgerHarness.py
+++ b/test/LedgerHarness.py
@@ -92,13 +92,7 @@ class LedgerHarness:
def readlines(self, fd):
lines = []
for line in fd.readlines():
- if line == "GuardMalloc: Allocations will be placed on byte boundaries.\n" or \
- line == "GuardMalloc: - Some buffer overruns may not be noticed.\n" or \
- line == "GuardMalloc: - Applications using vector instructions (e.g., SSE or Altivec) may fail.\n" or \
- line == "GuardMalloc: - Applications expecting word-aligned pointers may fail (such as Carbon applications)\n" or \
- line.startswith("GuardMalloc: GuardMalloc version"):
- continue
- else:
+ if not line.startswith("GuardMalloc"):
lines.append(line)
return lines