• Home
Name Date Size #Lines LOC

..--

abc2program/06-May-2025-347264

arkts_header/06-May-2025-374269

assembler/06-May-2025-496362

bytecode_optimizer/06-May-2025-312284

cmake/06-May-2025-316278

compiler/06-May-2025-3,7613,050

disassembler/06-May-2025-347276

doc/06-May-2025-67,42947,652

irtoc_scripts/06-May-2025-2,4072,181

isa/06-May-2025-258228

libllvmbackend/06-May-2025-568519

playground/06-May-2025-7,6025,470

runtime/06-May-2025-51,91839,641

snippet_verifier/06-May-2025-758567

stdlib/06-May-2025-88,69580,273

templates/stdlib/06-May-2025-9,7318,965

tests/06-May-2025-434,496346,592

tools/06-May-2025-2,1521,463

verification/06-May-2025-15199

BUILD.gnD06-May-20254.8 KiB176152

CMakeLists.txtD06-May-20255.3 KiB154123

GenerateStdLib.cmakeD06-May-20252.4 KiB5751

HostTools.cmakeD06-May-2025264 65

README.mdD06-May-2025614 2218

RegisterPlugin.cmakeD06-May-202534 21

ets_plugin_options.yamlD06-May-20254.5 KiB9572

intrinsics.cmakeD06-May-2025361 97

plugin.gnD06-May-2025707 1614

runtime_options.yamlD06-May-20254.7 KiB217179

subproject_sources.gnD06-May-20258.2 KiB229199

README.md

1# How to run ets-func-tests and cts tests locally
2
3## Prerequisites
4```bash
5$ export ARK_ROOT=/path/to/panda
6$ export BUILD=/path/to/panda/build
7```
8## Run ets-func-tests in INT mode
9```bash
10$ $ARK_ROOT/tests/tests-u-runner/runner.sh --ets-func-tests --build-dir $BUILD --processes=`nproc`
11```
12
13## Run ets-func-tests in JIT mode
14```bash
15$ $ARK_ROOT/tests/tests-u-runner/runner.sh --ets-func-tests --build-dir $BUILD --jit --ark-args='--compiler-ignore-failures=false' --processes=`nproc`
16```
17
18## Run cts tests
19```bash
20$ $ARK_ROOT/tests/tests-u-runner/runner.sh --ets-cts --build-dir $BUILD --processes=`nproc`
21```
22