summaryrefslogtreecommitdiff
path: root/test/LedgerHarness.py
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2011-03-28 01:52:27 -0400
committerJohn Wiegley <johnw@newartisans.com>2011-03-28 01:52:27 -0400
commit6257e6b4babc6450618dd62e8880ba4fdde42698 (patch)
treed904194ce3812423534dee2ac169f19d91fb3541 /test/LedgerHarness.py
parentc65f98fadce5b1de3722fcd2291f5c7f92e1555b (diff)
downloadfork-ledger-6257e6b4babc6450618dd62e8880ba4fdde42698.tar.gz
fork-ledger-6257e6b4babc6450618dd62e8880ba4fdde42698.tar.bz2
fork-ledger-6257e6b4babc6450618dd62e8880ba4fdde42698.zip
Remove spurious false errors when using GuardMalloc
Diffstat (limited to 'test/LedgerHarness.py')
-rwxr-xr-xtest/LedgerHarness.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/LedgerHarness.py b/test/LedgerHarness.py
index 44e4e61c..48d038ba 100755
--- a/test/LedgerHarness.py
+++ b/test/LedgerHarness.py
@@ -96,7 +96,7 @@ class LedgerHarness:
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 == "GuardMalloc: GuardMalloc version 18\n":
+ line.startswith("GuardMalloc: GuardMalloc version"):
continue
else:
lines.append(line)