• Home
Name
Date
Size
#Lines
LOC

..--

arkts_header/12-May-2024-373270

assembler/12-May-2024-496362

bytecode_optimizer/12-May-2024-289264

cmake/12-May-2024-262230

compiler/12-May-2024-2,7392,149

disassembler/12-May-2024-328262

doc/12-May-2024-57,60840,378

irtoc_scripts/12-May-2024-115100

isa/12-May-2024-242214

runtime/12-May-2024-41,24631,533

stdlib/12-May-2024-62,30656,321

templates/stdlib/12-May-2024-4,7514,335

tests/12-May-2024-200,985158,671

tools/12-May-2024-2,1131,695

verification/12-May-2024-15199

BUILD.gnD12-May-20245.8 KiB194177

CMakeLists.txtD12-May-20244.3 KiB132103

README.mdD12-May-2024644 2218

RegisterPlugin.cmakeD12-May-202434 21

ets_plugin_options.yamlD12-May-20243.4 KiB7756

intrinsics.cmakeD12-May-2024361 97

plugin.gnD12-May-2024707 1614

runtime_options.yamlD12-May-20245.1 KiB230191

subproject_sources.gnD12-May-20245 KiB143125

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 $ARK_ROOT --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 $ARK_ROOT --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 $ARK_ROOT --ets-cts --build-dir $BUILD --processes=`nproc`
21```
22