diff options
-rwxr-xr-x | testxml/testxml.py | 5 |
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) |