Changeset: 8f7ff330e13e for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB/rev/8f7ff330e13e
Modified Files:
testing/sqllogictest.py
Branch: default
Log Message:
merged with Sep2022
diffs (26 lines):
diff --git a/sql/test/BugTracker-2009/Tests/overflow.SF-2853458.test
b/sql/test/BugTracker-2009/Tests/overflow.SF-2853458.test
--- a/sql/test/BugTracker-2009/Tests/overflow.SF-2853458.test
+++ b/sql/test/BugTracker-2009/Tests/overflow.SF-2853458.test
@@ -1,8 +1,8 @@
-skipif arch=arm64
+skipif arch=aarch64
statement error 22003!overflow in conversion of 9.2233720368547758e+18 to lng.
select cast(power(2,63) as bigint)
-onlyif arch=arm64
+onlyif arch=aarch64
query I
select cast(power(2,63) as bigint)
----
diff --git a/testing/sqllogictest.py b/testing/sqllogictest.py
--- a/testing/sqllogictest.py
+++ b/testing/sqllogictest.py
@@ -44,6 +44,8 @@ from typing import Optional
architecture = platform.machine()
if architecture == 'AMD64': # Windows :-(
architecture = 'x86_64'
+if architecture == 'arm64': # MacOS :-(
+ architecture = 'aarch64'
skipidx = re.compile(r'create index .* \b(asc|desc)\b', re.I)
_______________________________________________
checkin-list mailing list -- [email protected]
To unsubscribe send an email to [email protected]