aboutsummaryrefslogtreecommitdiff
path: root/scripts/tests
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2011-10-14 04:00:25 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2011-10-14 04:00:25 +0000
commit37a4d67c5d318006f82c2a8077c50aec4e7f3844 (patch)
tree2b4d0a313dbc2747e44edd3511f3ba4b034c6456 /scripts/tests
parentf59b4c793af508747e87996f65ba76836428b906 (diff)
attempt to fix filtering of meaningless messages
svn path=/trunk/; revision=15595
Diffstat (limited to 'scripts/tests')
-rwxr-xr-xscripts/tests/pdtest.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/scripts/tests/pdtest.py b/scripts/tests/pdtest.py
index 28b3a612..a793e186 100755
--- a/scripts/tests/pdtest.py
+++ b/scripts/tests/pdtest.py
@@ -117,6 +117,8 @@ class PdTest():
'IOhannes m zm',
'part of zexy-',
'Pd: 0.43.1-extended',
+ 'pdstring version 0.10-2 by Bryan Jurish',
+ 'verbose(3): libdir_loader: added .* to the canvas-local objectclass path',
'based on sync from jMax'
]
for ignore in ignorelines:
@@ -156,11 +158,11 @@ class PdTest():
patchoutput.append(line)
else:
break
- patchoutput = self.remove_ignorelines(patchoutput)
- if len(patchoutput) > 0:
+ toprint = self.remove_ignorelines(patchoutput)
+ if len(toprint) > 0:
log.write('\n\n__________________________________________________\n')
log.write('loading: ' + patch + '\n')
- for line in patchoutput:
+ for line in toprint:
log.write(line)
log.flush()