• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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