Skip to content

Instantly share code, notes, and snippets.

@cfriedt
Created July 5, 2024 11:46
Show Gist options
  • Save cfriedt/c397ee709bb721c825671f74f924dbe6 to your computer and use it in GitHub Desktop.
Save cfriedt/c397ee709bb721c825671f74f924dbe6 to your computer and use it in GitHub Desktop.
```shell
twister -p native_sim -p qemu_riscv64 -p qemu_x86 -p qemu_x86_64 -p qemu_cortex_a53 -p mps2/an385 -T tests/posix
...
INFO - Total complete: 270/ 270 100% skipped: 84, failed: 0, error: 0
INFO - 45 test scenarios (270 test instances) selected, 84 configurations skipped (58 by static filter, 26 at runtime).
INFO - 186 of 270 test configurations passed (100.00%), 0 failed, 0 errored, 84 skipped with 0 warnings in 403.48 seconds
INFO - In total 7029 test cases were executed, 3759 skipped on 6 out of total 21 platforms (28.57%)
INFO - 181 test configurations executed on platforms, 5 test configurations were only built.
```
A lot of build-only targets being skipped here..
```cpp
twister --build-only -T tests/net/ -T tests/lib/c_lib
...
INFO - Total complete: 7042/7042 100% skipped: 5895, failed: 0, error: 0
INFO - 250 test scenarios (7042 test instances) selected, 5895 configurations skipped (5868 by static filter, 27 at runtime).
INFO - 1147 of 7042 test configurations passed (100.00%), 0 failed, 0 errored, 5895 skipped with 0 warnings in 2589.39 seconds
INFO - 0 test configurations executed on platforms, 1147 test configurations were only built.
```
```cpp
twister -i -p mimxrt1170_evk/mimxrt1176/cm7 -p mm_feather -p nrf9131ek/nrf9131/ns -s tests/posix/common/portability.posix.common.newlib -s tests/posix/common/portability.posix.common.tls.newlib -s tests/posix/fs/portability.posix.fs.newlib -s tests/posix/fs/portability.posix.fs.tls.newlib -s tests/posix/headers/portability.posix.headers.newlib.with_posix_api -s tests/lib/c_lib/thrd/libraries.libc.c11_threads.newlib -s tests/lib/c_lib/thrd/libraries.libc.c11_threads.newlib_nano
...
INFO - Total complete: 21/ 21 100% skipped: 2, failed: 0, error: 0
INFO - 7 test scenarios (21 test instances) selected, 2 configurations skipped (0 by static filter, 2 at runtime).
INFO - 19 of 21 test configurations passed (100.00%), 0 failed, 0 errored, 2 skipped with 0 warnings in 127.21 seconds
INFO - In total 696 test cases were executed, 210 skipped on 3 out of total 7 platforms (42.86%)
INFO - 0 test configurations executed on platforms, 19 test configurations were only built.
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment