Changeset: 8e87d6376494 for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB/rev/8e87d6376494
Modified Files:
testing/Mtest.py.in
Branch: Jun2023
Log Message:
Fix negated version test.
diffs (22 lines):
diff --git a/testing/Mtest.py.in b/testing/Mtest.py.in
--- a/testing/Mtest.py.in
+++ b/testing/Mtest.py.in
@@ -2047,6 +2047,8 @@ def RunTest(env, TST, COND, oktests, len
else:
for i in range(len(geos_version)):
if i >= len(req_vers):
+ reason = "geos version too high"
+ elem = SkipTest(env, TST, EXT, reason, length)
break
if int(geos_version[i]) < int(req_vers[i]):
break
@@ -2054,6 +2056,9 @@ def RunTest(env, TST, COND, oktests, len
reason = "geos version too high"
elem = SkipTest(env, TST, EXT, reason, length)
break
+ else:
+ reason = "geos version too high"
+ elem = SkipTest(env, TST, EXT, reason, length)
if reason is not None:
break
elif cond.startswith('R_VERSION>='):
_______________________________________________
checkin-list mailing list -- [email protected]
To unsubscribe send an email to [email protected]