• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright (c) 2021 Huawei Device Co., Ltd.
2# Licensed under the Apache License, Version 2.0 (the "License");
3# you may not use this file except in compliance with the License.
4# You may obtain a copy of the License at
5#
6#     http://www.apache.org/licenses/LICENSE-2.0
7#
8# Unless required by applicable law or agreed to in writing, software
9# distributed under the License is distributed on an "AS IS" BASIS,
10# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11# See the License for the specific language governing permissions and
12# limitations under the License.
13
14group("ark_jit_ts_test") {
15  testonly = true
16  test_list = [
17    "arguments",
18    "create_arguments",
19    "try_catch_empty",
20    "uint32_array",
21    "ldobjbyname",
22    "for_loop",
23    "typed_array",
24    "while_loop",
25    "exception",
26    "construct_with_normal_function",
27    "data_view",
28    "addition_assignment",
29    "catch_with_osr",
30    "jit_test_0001",
31    "string_length",
32    "ts_inline",
33    "proxy_fast_call",
34    "fuzz_exception",
35    "utf16key",
36    "throw_error",
37    "compiler_inline",
38    "inc",
39  ]
40
41  deps = [ "pgo_roottype_test:pgo_roottype_test" ]
42  foreach(test, test_list) {
43    deps += [ "${test}:${test}JitAction" ]
44  }
45}
46
47group("ark_jit_test") {
48  testonly = true
49  deps = [ ":ark_jit_ts_test" ]
50
51  if (is_mac) {
52    deps -= [ ":ark_jit_ts_test" ]
53  }
54}
55