From 5c173f4436703aa6a75ac2fb93d3785905cb72fa Mon Sep 17 00:00:00 2001 From: Mohamed Hegazy Date: Mon, 6 Nov 2017 12:51:52 -0800 Subject: [PATCH] Remove test --- tests/baselines/reference/useTypedArrays1.js | 22 --------- .../reference/useTypedArrays1.symbols | 37 --------------- .../baselines/reference/useTypedArrays1.types | 46 ------------------- .../conformance/es2017/useTypedArrays1.ts | 12 ----- 4 files changed, 117 deletions(-) delete mode 100644 tests/baselines/reference/useTypedArrays1.js delete mode 100644 tests/baselines/reference/useTypedArrays1.symbols delete mode 100644 tests/baselines/reference/useTypedArrays1.types delete mode 100644 tests/cases/conformance/es2017/useTypedArrays1.ts diff --git a/tests/baselines/reference/useTypedArrays1.js b/tests/baselines/reference/useTypedArrays1.js deleted file mode 100644 index bbfcccec836..00000000000 --- a/tests/baselines/reference/useTypedArrays1.js +++ /dev/null @@ -1,22 +0,0 @@ -//// [useTypedArrays1.ts] -var int8Array = new Int8Array(); -var uint8Array = new Uint8Array(); -var uint8ClampedArray = new Uint8ClampedArray(); -var int16Array = new Int16Array(); -var uint16Array = new Uint16Array(); -var int32Array = new Int32Array(); -var uint32Array = new Uint32Array(); -var float32Array = new Float32Array(); -var float64Array = new Float64Array(); - - -//// [useTypedArrays1.js] -var int8Array = new Int8Array(); -var uint8Array = new Uint8Array(); -var uint8ClampedArray = new Uint8ClampedArray(); -var int16Array = new Int16Array(); -var uint16Array = new Uint16Array(); -var int32Array = new Int32Array(); -var uint32Array = new Uint32Array(); -var float32Array = new Float32Array(); -var float64Array = new Float64Array(); diff --git a/tests/baselines/reference/useTypedArrays1.symbols b/tests/baselines/reference/useTypedArrays1.symbols deleted file mode 100644 index ed41b0c24bd..00000000000 --- a/tests/baselines/reference/useTypedArrays1.symbols +++ /dev/null @@ -1,37 +0,0 @@ -=== tests/cases/conformance/es2017/useTypedArrays1.ts === -var int8Array = new Int8Array(); ->int8Array : Symbol(int8Array, Decl(useTypedArrays1.ts, 0, 3)) ->Int8Array : Symbol(Int8Array, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --)) - -var uint8Array = new Uint8Array(); ->uint8Array : Symbol(uint8Array, Decl(useTypedArrays1.ts, 1, 3)) ->Uint8Array : Symbol(Uint8Array, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --)) - -var uint8ClampedArray = new Uint8ClampedArray(); ->uint8ClampedArray : Symbol(uint8ClampedArray, Decl(useTypedArrays1.ts, 2, 3)) ->Uint8ClampedArray : Symbol(Uint8ClampedArray, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --)) - -var int16Array = new Int16Array(); ->int16Array : Symbol(int16Array, Decl(useTypedArrays1.ts, 3, 3)) ->Int16Array : Symbol(Int16Array, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --)) - -var uint16Array = new Uint16Array(); ->uint16Array : Symbol(uint16Array, Decl(useTypedArrays1.ts, 4, 3)) ->Uint16Array : Symbol(Uint16Array, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --)) - -var int32Array = new Int32Array(); ->int32Array : Symbol(int32Array, Decl(useTypedArrays1.ts, 5, 3)) ->Int32Array : Symbol(Int32Array, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --)) - -var uint32Array = new Uint32Array(); ->uint32Array : Symbol(uint32Array, Decl(useTypedArrays1.ts, 6, 3)) ->Uint32Array : Symbol(Uint32Array, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --)) - -var float32Array = new Float32Array(); ->float32Array : Symbol(float32Array, Decl(useTypedArrays1.ts, 7, 3)) ->Float32Array : Symbol(Float32Array, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --)) - -var float64Array = new Float64Array(); ->float64Array : Symbol(float64Array, Decl(useTypedArrays1.ts, 8, 3)) ->Float64Array : Symbol(Float64Array, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --)) - diff --git a/tests/baselines/reference/useTypedArrays1.types b/tests/baselines/reference/useTypedArrays1.types deleted file mode 100644 index f3f27383a3e..00000000000 --- a/tests/baselines/reference/useTypedArrays1.types +++ /dev/null @@ -1,46 +0,0 @@ -=== tests/cases/conformance/es2017/useTypedArrays1.ts === -var int8Array = new Int8Array(); ->int8Array : Int8Array ->new Int8Array() : Int8Array ->Int8Array : Int8ArrayConstructor - -var uint8Array = new Uint8Array(); ->uint8Array : Uint8Array ->new Uint8Array() : Uint8Array ->Uint8Array : Uint8ArrayConstructor - -var uint8ClampedArray = new Uint8ClampedArray(); ->uint8ClampedArray : Uint8ClampedArray ->new Uint8ClampedArray() : Uint8ClampedArray ->Uint8ClampedArray : Uint8ClampedArrayConstructor - -var int16Array = new Int16Array(); ->int16Array : Int16Array ->new Int16Array() : Int16Array ->Int16Array : Int16ArrayConstructor - -var uint16Array = new Uint16Array(); ->uint16Array : Uint16Array ->new Uint16Array() : Uint16Array ->Uint16Array : Uint16ArrayConstructor - -var int32Array = new Int32Array(); ->int32Array : Int32Array ->new Int32Array() : Int32Array ->Int32Array : Int32ArrayConstructor - -var uint32Array = new Uint32Array(); ->uint32Array : Uint32Array ->new Uint32Array() : Uint32Array ->Uint32Array : Uint32ArrayConstructor - -var float32Array = new Float32Array(); ->float32Array : Float32Array ->new Float32Array() : Float32Array ->Float32Array : Float32ArrayConstructor - -var float64Array = new Float64Array(); ->float64Array : Float64Array ->new Float64Array() : Float64Array ->Float64Array : Float64ArrayConstructor - diff --git a/tests/cases/conformance/es2017/useTypedArrays1.ts b/tests/cases/conformance/es2017/useTypedArrays1.ts deleted file mode 100644 index e06bf91f317..00000000000 --- a/tests/cases/conformance/es2017/useTypedArrays1.ts +++ /dev/null @@ -1,12 +0,0 @@ -// @target: es5 -// @lib: es5,es2017.typedarrays - -var int8Array = new Int8Array(); -var uint8Array = new Uint8Array(); -var uint8ClampedArray = new Uint8ClampedArray(); -var int16Array = new Int16Array(); -var uint16Array = new Uint16Array(); -var int32Array = new Int32Array(); -var uint32Array = new Uint32Array(); -var float32Array = new Float32Array(); -var float64Array = new Float64Array();