Home
last modified time | relevance | path

Searched full:fail (Results 1 – 25 of 359) sorted by relevance

12345678910>>...15

/arkcompiler/ets_runtime/test/sharedtest/check/
Dexpect_output.txt22 Fail to update propNumber to null with stobjbyname. err: TypeError: Cannot set sendable property wi…
23 Fail to update propBool to null with stobjbyname. err: TypeError: Cannot set sendable property with…
24 Fail to update propBigInt1 to null with stobjbyname. err: TypeError: Cannot set sendable property w…
25 Fail to update propBigInt2 to null with stobjbyname. err: TypeError: Cannot set sendable property w…
45 Fail to update subClassPropString with stobjbyname. err: TypeError: Cannot set sendable property wi…
47 Fail to replace accessor. err: TypeError: Cannot define property
49 Fail to set prop through accessor with mismatched type. err: TypeError: Cannot set sendable propert…
51 Fail to replace instance's func. err: TypeError: Cannot assign to read only property
53 Fail to update prototype. err: TypeError: Cannot add property in prevent extensions
54 Fail to extend prop to constructor's prototype. err: TypeError: Cannot add property in prevent exte…
[all …]
Dsharedcheck.ts149 print("Fail to delete propNumber. err: " + error)
159 print("Fail to extend prop with defineProperty. err: " + error);
166 print("Fail to extend prop1 with defineProperty. err: " + error)
173 print("Fail to extend prop2 with defineProperties. err: " + error)
180 print("Fail to extend prop3 with stobjbyname. err: " + error)
190 print("Fail to replace instance's func. err: " + error);
200 print("Fail to update prototype. err: " + error)
207 print("Fail to extend prop to constructor's prototype. err: " + error);
215 print("Fail to change constructor of instance's prototype. err: " + error);
222 print("Fail to replace instance's prototype. err: " + error);
[all …]
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/07.expressions/01.evaluation_of_expressions/05.evaluation_of_other_expressions/
Dcast.params.yaml18 fail: 0
22 fail: 1
26 fail: 0
30 fail: 1
34 fail: 1
39 fail: 0
43 fail: 1
47 fail: 0
51 fail: 1
55 fail: 1
[all …]
Dase.params.yaml16 - { init: 'new A[1]', expr: 'new A()', fail: 0 }
17 - { init: 'new B[1]', expr: 'new A()', fail: 1 }
18 - { init: 'new I[1]', expr: 'new A()', fail: 0 }
19 - { init: 'new J[1]', expr: 'new A()', fail: 1 }
20 - { init: 'new K[1]', expr: 'new A()', fail: 1 }
22 - { init: 'new A[1]', expr: 'new B()', fail: 0 }
23 - { init: 'new B[1]', expr: 'new B()', fail: 0 }
24 - { init: 'new I[1]', expr: 'new B()', fail: 0 }
25 - { init: 'new J[1]', expr: 'new B()', fail: 0 }
26 - { init: 'new K[1]', expr: 'new B()', fail: 1 }
Dexc.params.yaml16 - { init: 'new A()', exc: A, fail: 0 }
17 - { init: 'new A()', exc: B, fail: 1 }
18 - { init: 'new A()', exc: C, fail: 1 }
19 - { init: 'new B()', exc: A, fail: 0 }
20 - { init: 'new B()', exc: B, fail: 0 }
21 - { init: 'new B()', exc: C, fail: 1 }
22 - { init: 'new C()', exc: A, fail: 0 }
23 - { init: 'new C()', exc: B, fail: 0 }
24 - { init: 'new C()', exc: C, fail: 0 }
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_func_tests/escompat/
DArrayTest5.sts17 const fail : int = 1;
30 return fail;
39 return fail;
42 return fail;
47 return fail;
51 return fail
54 return fail;
58 return fail
66 return fail;
70 return fail;
[all …]
DArrayTest4.sts17 const fail : int = 1;
50 return fail;
54 if (hasException == false) { return fail; }
61 if (res != 994) { return fail; }
62 if (res == -1) { return fail; }
77 return fail;
81 if (hasException == false) { return fail; }
88 if (res != 503) { return fail; }
89 if (res == -1) { return fail; }
101 return fail;
[all …]
DArrayTest3.sts17 const fail : int = 1;
47 if (arrEmpty.every(fnTrue) == false) { return fail; }
53 if (arr.every(fnTrue) == false) { return fail; }
58 if (arr.every(fnFalse) == true) { return fail; }
67 if (arrEmpty.every(fnTrue) == false) { return fail; }
73 if (arr.every(fnTrue) == false) { return fail; }
78 if (arr.every(fnFalse) == true) { return fail; }
87 if (arrEmpty.every(fnTrue) == false) { return fail; }
93 if (arr.every(fnTrue) == false) { return fail; }
98 if (arr.every(fnFalse) == true) { return fail; }
[all …]
DArrayTest6.sts17 const fail : int = 1;
45 if (arr.findIndex(fnPositive) != 9) { return fail; }
46 if (arr.findIndex(fnNegative) != 1) { return fail; }
47 if (arr.findIndex(fnUndefined) != -1) { return fail; }
48 if (arr.findIndex(fnNull) != -1) { return fail; }
69 if (arr.findIndex(fnPositive) != 9) { return fail; }
70 if (arr.findIndex(fnNegative) != 1) { return fail; }
71 if (arr.findIndex(fnUndefined) != -1) { return fail; }
72 if (arr.findIndex(fnNull) != -1) { return fail; }
93 if (arr.findIndex(fnPositive) != 9) { return fail; }
[all …]
DArrayTest1.sts17 const fail : int = 1;
42 return fail;
44 return arr.length == 0 ? success : fail
53 return fail;
58 let result = arr.length == 0 ? success : fail;
64 let result = arr.length == 10 ? success : fail;
70 return Array.isArray(n) == true ? success : fail;
75 return Array.isArray(arr) == true ? success : fail;
80 return fail;
83 return fail;
[all …]
DArrayTest2.sts17 const fail : int = 1;
42 return fail;
57 return fail;
62 return fail;
76 return fail;
91 return fail;
96 return fail;
110 return fail;
125 return fail;
130 return fail;
[all …]
DArrayGet.sts17 const fail : int = 1;
38 return b[2] == 237 ? success : fail;
45 return b[-1] == undefined ? success : fail;
51 return fail;
58 return b[2] == 237 ? success : fail;
65 return b[-1] == undefined ? success : fail;
71 return fail;
78 return b[2] == 237 ? success : fail;
85 return b[-1] == undefined ? success : fail;
91 return fail;
[all …]
DGlobalTest.sts17 const fail : int = 1;
38 return foo(new object()) == success ? success : fail;
42 return foo(new Object()) == success ? success : fail;
46 return bar(new object()) == success ? success : fail;
50 return bar(new Object()) == success ? success : fail;
58 return fail;
67 return fail;
73 return fail;
DIteratorArrayTest.sts17 const fail : int = 1;
34 return fail;
51 return fail;
56 return fail;
79 return fail;
84 return fail;
99 return fail;
108 return fail;
114 return fail;
/arkcompiler/ets_runtime/test/sharedtest/sharedcollectionsexception/
Dexpect_output.txt15 call boundAt fail. err: BusinessError: The at method cannot be bound., errCode: 10200011
16 Call boundConcat fail. err: BusinessError: The concat method cannot be bound., errCode: 10200011
64 Create with non-sendable element fail. err: BusinessError: Parameter error.Only accept sendable val…
66 Create from non-sendable iterator fail. err: BusinessError: Parameter error.Only accept sendable va…
67 Create from non-sendable element fail. err: BusinessError: Parameter error.Only accept sendable val…
68 Create from mapper: non-sendable element fail. err: BusinessError: Parameter error.Only accept send…
72 concat with non-sendable array fail.err: BusinessError: Parameter error.Only accept sendable value.…
73 concat with non-sendable element fail. err: BusinessError: Parameter error.Only accept sendable val…
75 fill array with non-sendable object and position fail. err: BusinessError: Parameter error.Only acc…
76 fill array with non-sendable object and start position fail. err: BusinessError: Parameter error.On…
[all …]
/arkcompiler/runtime_core/static_core/plugins/ets/tests/stdlib-templates/utils/
Dtest_core_typeduarray_function1.j218 const fail: number = 1;
77 return fail;
89 return fail;
97 return fail;
105 return fail;
111 return fail;
117 return fail;
125 return fail;
134 return fail;
143 return fail;
[all …]
Dtest_core_typedarray_function1.j218 const fail: number = 1;
76 return fail;
88 return fail;
96 return fail;
104 return fail;
110 return fail;
116 return fail;
124 return fail;
133 return fail;
142 return fail;
[all …]
Dtest_core_typeduarray_function2.j218 const fail: number = 1;
50 return fail;
62 return fail;
70 return fail;
87 return fail;
96 return fail;
101 return fail;
111 return fail;
117 return fail;
124 return fail;
[all …]
Dtest_core_typedarray_function2.j218 const fail: number = 1;
51 return fail;
63 return fail;
71 return fail;
88 return fail;
97 return fail;
102 return fail;
112 return fail;
118 return fail;
125 return fail;
[all …]
Dtest_core_typedarray_bignum.j218 const fail: number = 1;
31 return fail;
43 return fail;
56 return fail;
66 return fail;
69 return fail;
76 return fail;
88 return fail;
101 return fail;
108 return fail;
[all …]
Dtest_core_typeduarray.j217 const fail: int = 1;
44 if (failures > 0) { return fail; }
53 return fail;
62 return fail;
67 return fail;
78 return fail;
85 return fail;
92 return fail;
96 return fail;
105 return fail;
[all …]
Dtest_core_typedarray.j217 const fail: int = 1;
43 if (failures > 0) { return fail; }
52 return fail;
61 return fail;
66 return fail;
75 return fail;
80 return fail;
96 return fail;
103 return fail;
115 return fail;
[all …]
/arkcompiler/runtime_core/static_core/plugins/ets/tests/interop_js/tests/promise/
Dpromise_tests.sts31 fail(): void {
91 globalTest!.fail();
94 globalTest!.fail();
111 globalTest!.fail();
116 globalTest!.fail();
130 globalTest!.fail();
137 globalTest!.fail();
141 globalTest!.fail();
164 globalTest!.fail();
168 globalTest!.fail();
[all …]
/arkcompiler/runtime_core/static_core/tests/irtoc-interpreter-tests/
Dcall.acc.pa48 jnez fail
50 jnez fail
52 jnez fail
54 jnez fail
56 jnez fail
58 jnez fail
60 fail:
/arkcompiler/runtime_core/tests/irtoc-interpreter-tests/
Dcall.acc.pa48 jnez fail
50 jnez fail
52 jnez fail
54 jnez fail
56 jnez fail
58 jnez fail
60 fail:

12345678910>>...15