Remove test

This commit is contained in:
Mohamed Hegazy 2017-11-06 12:51:52 -08:00
parent 5b9905d5a4
commit 5c173f4436
4 changed files with 0 additions and 117 deletions

View File

@ -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();

View File

@ -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, --, --))

View File

@ -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

View File

@ -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();