summaryrefslogtreecommitdiff
path: root/test/harness
diff options
context:
space:
mode:
authorLeo Balter <leonardo.balter@gmail.com>2018-02-27 14:58:56 -0500
committerGitHub <noreply@github.com>2018-02-27 14:58:56 -0500
commit27128070275f467aa62f74b515ec111ca902f997 (patch)
treec348f2bd4b4c826e74e1f64cdde45af1d971c1a0 /test/harness
parent173e98e00b14db854d293108d559b79071dfaab2 (diff)
downloadqtdeclarative-testsuites-27128070275f467aa62f74b515ec111ca902f997.tar.gz
Fix errors recently introduced. (#1448)
* Fix bad references on tests for BigInt TypedArrays * Remove bad conversions for BigInt TypedArray * Cleanup the BigInt TypedArray harness file Remove non used code (testBigIntTypedArrayConversions) Move the constructors list to inside the exposed function, this prevents early implementations to fail before the function is called. * Fix bad references in TypedArrays.of (BigInt) * Remove BigInt tests from typedarray harness test * Use BigInt for BigInt typedArrays * Apply last fixings on BigInt TypedArray tests * Apply fixes to last revision from @anba
Diffstat (limited to 'test/harness')
-rw-r--r--test/harness/testTypedArray.js5
1 files changed, 0 insertions, 5 deletions
diff --git a/test/harness/testTypedArray.js b/test/harness/testTypedArray.js
index bb0016857..9c99a05a1 100644
--- a/test/harness/testTypedArray.js
+++ b/test/harness/testTypedArray.js
@@ -25,11 +25,6 @@ var TAConstructors = [
Uint8ClampedArray
];
-if (typeof BigInt !== "undefined") {
- TAConstructors.push(BigInt64Array);
- TAConstructors.push(BigUint64Array);
-}
-
var length = TAConstructors.length;
assert(