summaryrefslogtreecommitdiff
path: root/testxml
diff options
context:
space:
mode:
Diffstat (limited to 'testxml')
-rwxr-xr-xtestxml/testxml.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/testxml/testxml.py b/testxml/testxml.py
index fa1a819..df4f30a 100755
--- a/testxml/testxml.py
+++ b/testxml/testxml.py
@@ -1093,8 +1093,13 @@ def testMap(file, path):
def showLayerErrors(file, points, msg, iserr):
txt = ""
+ cnt = 0
for point in points:
txt = txt + " " + str(point) + ","
+ cnt = cnt + 1
+ if cnt > 100:
+ txt = txt + " ... "
+ break
showMsgFile(file, msg + txt[0:len(txt)-1], iserr)