summaryrefslogtreecommitdiff
path: root/mysql-test/t/gis.test
diff options
context:
space:
mode:
authorAlexey Kopytov <Alexey.Kopytov@sun.com>2009-02-15 12:26:08 +0300
committerAlexey Kopytov <Alexey.Kopytov@sun.com>2009-02-15 12:26:08 +0300
commit65e2c68a4dc75c3d476433f959685776cc95ebc9 (patch)
tree844b3ffdf9533767d7d87e87521f941a09e660e5 /mysql-test/t/gis.test
parent4e356b1fe3b4cd228fbca64c1b89e5914a0ed6aa (diff)
downloadmariadb-git-65e2c68a4dc75c3d476433f959685776cc95ebc9.tar.gz
Fixed PB failures on IA64 hosts introduced by the patch for bug #21205.
mysql-test/t/gis.test: IA64 gcc backend lacks -fno-fused-madd option, so we have to adjust results.
Diffstat (limited to 'mysql-test/t/gis.test')
-rw-r--r--mysql-test/t/gis.test3
1 files changed, 3 insertions, 0 deletions
diff --git a/mysql-test/t/gis.test b/mysql-test/t/gis.test
index cf2e4a21419..cc2ac5b7392 100644
--- a/mysql-test/t/gis.test
+++ b/mysql-test/t/gis.test
@@ -355,6 +355,9 @@ insert into t1 values ('85984',GeomFromText('MULTIPOLYGON(((-115.006363
select object_id, geometrytype(geo), ISSIMPLE(GEO), ASTEXT(centroid(geo)) from
t1 where object_id=85998;
+# Expected result is 36.3310176346905, but IA64 returns 36.3310176346904
+# due to fused multiply-add instructions.
+--replace_result 36.3310176346904 36.3310176346905
select object_id, geometrytype(geo), ISSIMPLE(GEO), ASTEXT(centroid(geo)) from
t1 where object_id=85984;