diff options
-rwxr-xr-x | test/LedgerHarness.py | 2 |
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) |