• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright (c) 2024 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
14import("//arkcompiler/ets_frontend/es2panda/es2abc_config.gni")
15import("//arkcompiler/ets_frontend/ets2panda/ets2abc_config.gni")
16import("//arkcompiler/runtime_core/libabckit/abckit_config.gni")
17
18action("abckit_stress_tests") {
19  deps = [
20    "$abckit_root/abckit:abckit",
21    "$ark_root_static/verification/verifier:verifier_bin",
22    "$es2abc_root:es2panda",
23    "$ets2abc_root:ets2panda",
24    "abckit_plugin:abckit_stress_plugin",
25  ]
26
27  outputs = [ "$target_gen_dir/abckit_stress_tests.txt" ]
28
29  script = "runner.py"
30
31  args = [ "--build-dir=" + rebase_path("$root_build_dir") ]
32}
33