Home
last modified time | relevance | path

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

12345678910>>...16

/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 …]
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 }
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 J[1]', expr: 'new A()', fail: 1 }
19 - { init: 'new K[1]', expr: 'new A()', fail: 1 }
20 - { init: 'new A[1]', expr: 'new B()', fail: 0 }
21 - { init: 'new B[1]', expr: 'new B()', fail: 0 }
22 - { init: 'new K[1]', expr: 'new B()', fail: 1 }
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_func_tests/escompat/
DArrayTest5.sts17 const fail : int = 1;
45 return fail;
54 return fail;
57 return fail;
62 return fail;
66 return fail
69 return fail;
73 return fail
82 return fail;
86 return fail;
[all …]
DArrayTest4.sts17 const fail : int = 1;
66 return fail;
70 if (hasException == false) { return fail; }
76 if (res != 994) { return fail; }
77 if (res == -1) { return fail; }
94 return fail;
98 if (hasException == false) { return fail; }
104 if (res != 503) { return fail; }
105 if (res == -1) { return fail; }
119 return fail;
[all …]
DArrayTest3.sts17 const fail : int = 1;
63 if (arr.every(fnTrue) == false) { return fail; }
67 if (arr.every(fnTrue) == false) { return fail; }
72 if (arr.every(fnFalse) == true) { return fail; }
83 if (arr.every(fnTrue) == false) { return fail; }
87 if (arr.every(fnTrue) == false) { return fail; }
92 if (arr.every(fnFalse) == true) { return fail; }
103 if (arr.every(fnTrue) == false) { return fail; }
107 if (arr.every(fnTrue) == false) { return fail; }
112 if (arr.every(fnFalse) == true) { return fail; }
[all …]
DArrayTest6.sts17 const fail : int = 1;
60 if (arr.findIndex(fnPositive) != 9) { return fail; }
61 if (arr.findIndex(fnNegative) != 1) { return fail; }
62 if (arr.findIndex(fnUndefined) != -1) { return fail; }
63 if (arr.findIndex(fnNull) != -1) { return fail; }
85 if (arr.findIndex(fnPositive) != 9) { return fail; }
86 if (arr.findIndex(fnNegative) != 1) { return fail; }
87 if (arr.findIndex(fnUndefined) != -1) { return fail; }
88 if (arr.findIndex(fnNull) != -1) { return fail; }
110 if (arr.findIndex(fnPositive) != 9) { return fail; }
[all …]
DArrayTest1.sts17 const fail : int = 1;
59 return fail;
61 return arr.length == 0 ? success : fail
71 return fail;
76 let result = arr.length == 0 ? success : fail;
83 return arr.length == 10 ? success : fail;
89 return Array.isArray(n) == true ? success : fail;
94 return Array.isArray(arr) == true ? success : fail;
100 return fail;
103 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 …]
DArrayTest2.sts17 const fail : int = 1;
57 return fail;
72 return fail;
77 return fail;
92 return fail;
107 return fail;
112 return fail;
127 return fail;
142 return fail;
147 return fail;
[all …]
/arkcompiler/runtime_core/static_core/plugins/ets/tests/stdlib-templates/utils/
Dtest_core_typedarray_slicing.j218 const fail: number = 1;
31 return fail;
44 return fail;
52 return fail;
70 return fail;
80 return fail;
85 return fail;
95 return fail;
101 return fail;
108 return fail;
[all …]
Dtest_core_typeduarray_slicing.j218 const fail: number = 1;
31 return fail;
43 return fail;
51 return fail;
75 return fail;
85 return fail;
90 return fail;
100 return fail;
106 return fail;
113 return fail;
[all …]
Dtest_core_typeduarray_ctors.j218 const fail: number = 1;
56 return fail;
68 return fail;
76 return fail;
85 return fail;
91 return fail;
99 return fail;
108 return fail;
117 return fail;
122 return fail;
[all …]
Dtest_core_typedarray_ctors.j218 const fail: number = 1;
55 return fail;
68 return fail;
76 return fail;
85 return fail;
91 return fail;
99 return fail;
108 return fail;
117 return fail;
122 return fail;
[all …]
Dtest_core_typedarray_bignum.j218 const fail: number = 1;
31 return fail;
43 return fail;
56 return fail;
64 return fail;
67 return fail;
74 return fail;
86 return fail;
99 return fail;
106 return fail;
[all …]
Dtest_core_typeduarray_function2.j218 const fail: number = 1;
53 return fail;
65 return fail;
73 return fail;
97 return fail;
106 return fail;
111 return fail;
121 return fail;
127 return fail;
134 return fail;
[all …]
Dtest_core_typedarray_function2.j218 const fail: number = 1;
54 return fail;
66 return fail;
74 return fail;
91 return fail;
100 return fail;
105 return fail;
115 return fail;
121 return fail;
128 return fail;
[all …]
Dtest_core_typeduarray.j217 const fail: int = 1;
41 if (failures > 0) { return fail; }
50 return fail;
61 return fail;
68 return fail;
75 return fail;
79 return fail;
88 return fail;
95 return fail;
99 return fail;
[all …]
/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/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:
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_func_tests/std/core/
DIntlNumberFormatRangeNaNTest.sts17 const fail: int = 1;
36 return fail;
62 return fail;
73 return fail;
77 return fail;
90 if (CheckFormatRangeNaNUnion(locale, funcName, startValue, endValue, expected) == fail) {
91 return fail;
107 if (CheckFormatRangeNaNUnion(locale, funcName, startValue, endValue, expected) == fail) {
108 return fail;
124 if (CheckFormatRangeNaNUnion(locale, funcName, startValue, endValue, expected) == fail) {
[all …]

12345678910>>...16