Add Aot Test Case

1.Add Aot test cases for 17 bytecodes:
CREATEARRAYWITHBUFFER_PREF_IMM16, CREATEOBJECTWITHBUFFER_PREF_IMM16
CREATEREGEXPWITHLITERAL_PREF_ID32_IMM8, DEFINEASYNCFUNC_PREF_ID16_IMM16_V8
DEFINEGENERATORFUNC_PREF_ID16_IMM16_V8, GETNEXTPROPNAME_PREF_V8
GETTEMPLATEOBJECT_PREF_V8, LDLEXVARDYN_PREF_IMM4_IMM4, LDLEXVARDYN_PREF_IMM8_IMM8
LDLEXVARDYN_PREF_IMM16_IMM16, STLEXVARDYN_PREF_IMM4_IMM4_V8, STLEXVARDYN_PREF_IMM8_IMM8_V8
STLEXVARDYN_PREF_IMM16_IMM16_V8, SETOBJECTWITHPROTO_PREF_V8_V8, STOWNBYINDEX_PREF_V8_IMM32
STOWNBYNAME_PREF_ID32_V8, STOWNBYVALUE_PREF_V8_V8

issue:https://gitee.com/openharmony/ark_js_runtime/issues/I573OV

Signed-off-by: lijincheng <lijincheng13@huawei.com>
This commit is contained in:
lijincheng
2022-05-12 14:40:26 +08:00
parent 3e6c4e224b
commit 08724b89e6
37 changed files with 695 additions and 0 deletions
@@ -0,0 +1,20 @@
/*
* Copyright (c) 2022 Huawei Device Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
declare function print(str:any):string;
var arrayIterator = ['fifth', 'sixth', 666];
print(arrayIterator[0]);
print(arrayIterator[1]);
print(arrayIterator[2]);