Browse Source

[tests] Disable test behind flag 'typedarray_precision_check' (see #7407)

George Corney 7 years ago
parent
commit
d583f7c9bd
1 changed files with 3 additions and 0 deletions
  1. 3 0
      tests/unit/src/unitstd/haxe/io/Float32Array.unit.hx

+ 3 - 0
tests/unit/src/unitstd/haxe/io/Float32Array.unit.hx

@@ -9,7 +9,10 @@ b[1] == 1.25;
 
 
 // check loss of precision due to 32 bits
 // check loss of precision due to 32 bits
 b[1] = 8589934591.;
 b[1] = 8589934591.;
+
+#if typedarray_precision_check // see issue #7407
 b[1] == 8589934592.;
 b[1] == 8589934592.;
+#end
 
 
 
 
 // set
 // set