• Home
Name Date Size #Lines LOC

..--

abc2program/22-Oct-2025-351267

arkts_header/22-Oct-2025-374269

assembler/22-Oct-2025-496362

bytecode_optimizer/22-Oct-2025-239217

cmake/22-Oct-2025-321283

compiler/22-Oct-2025-5,1184,152

disassembler/22-Oct-2025-353283

doc/22-Oct-2025-78,57055,736

irtoc_scripts/22-Oct-2025-3,2252,913

isa/22-Oct-2025-346319

libllvmbackend/22-Oct-2025-705642

playground/22-Oct-2025-8,5276,316

runtime/22-Oct-2025-97,65871,840

sdk/22-Oct-2025-19,04616,987

snippet_verifier/22-Oct-2025-757566

stdlib/22-Oct-2025-93,37582,598

templates/stdlib/22-Oct-2025-8,3397,574

tests/22-Oct-2025-788,989633,739

tools/22-Oct-2025-9,5646,553

verification/22-Oct-2025-152100

BUILD.gnD22-Oct-202511.5 KiB384346

CMakeLists.txtD22-Oct-20258 KiB223181

GenerateStdLib.cmakeD22-Oct-20252.7 KiB6256

HostTools.cmakeD22-Oct-2025264 65

README.mdD22-Oct-2025614 2218

RegisterPlugin.cmakeD22-Oct-202534 21

ets_plugin_options.yamlD22-Oct-20255.5 KiB10986

intrinsics.cmakeD22-Oct-2025361 97

plugin.gnD22-Oct-2025707 1614

runtime_options.yamlD22-Oct-20255.7 KiB260218

subproject_sources.gnD22-Oct-202511.1 KiB306272

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