├── .github └── workflows │ ├── docs.yml │ ├── reuse.yml │ ├── test-plans-pipeline.yml │ └── zstd-release.yml ├── .gitignore ├── .readthedocs.yml ├── .reuse └── dep5 ├── COPYING ├── COPYRIGHTS ├── LICENSES ├── GPL-2.0-only.txt ├── GPL-3.0-only.txt ├── ISC.txt ├── LicenseRef-stream └── MIT.txt ├── README.md ├── automated ├── android │ ├── adb-join-wifi │ │ ├── adb-join-wifi.sh │ │ └── adb-join-wifi.yaml │ ├── apk-automation │ │ ├── .gitignore │ │ ├── andebenchpro2015.py │ │ ├── antutu6.py │ │ ├── apk-automation.sh │ │ ├── apk-automation.yaml │ │ ├── benchmarkpi.py │ │ ├── caffeinemark.py │ │ ├── cf-bench.py │ │ ├── common │ │ │ └── __init__.py │ │ ├── gearses2eclair.py │ │ ├── geekbench3.py │ │ ├── geekbench4.py │ │ ├── glbenchmark25-preferences.xml │ │ ├── glbenchmark25.py │ │ ├── javawhetstone.py │ │ ├── jbench.py │ │ ├── linpack.py │ │ ├── main.py │ │ ├── quadrantpro.py │ │ ├── rl-sqlite.py │ │ ├── scimark.py │ │ └── vellamo3.py │ ├── bionic-benchmarks │ │ ├── bionic-benchmarks.sh │ │ ├── bionic-benchmarks.yaml │ │ └── device-script.sh │ ├── bionic-libc-tests │ │ ├── bionic-libc-tests.sh │ │ ├── bionic-libc-tests.yaml │ │ └── device-script.sh │ ├── bootchart │ │ ├── bootchart.sh │ │ ├── bootchart.yaml │ │ └── device-script.sh │ ├── bootstat │ │ ├── bootstat_v1.yaml │ │ └── device-script.sh │ ├── boottime │ │ ├── boottime.sh │ │ ├── boottime.yaml │ │ ├── device-script-master.sh │ │ └── device-script.sh │ ├── busybox │ │ ├── busybox.sh │ │ ├── busybox.yaml │ │ └── device-script.sh │ ├── dd-wr-speed │ │ ├── dd-wr-speed.sh │ │ ├── dd-wr-speed.yaml │ │ └── device-script.sh │ ├── ion-monitor-tool │ │ ├── example-job.yaml │ │ ├── ion-monitor-tool.yaml │ │ ├── runner.sh │ │ └── setup.sh │ ├── kunit │ │ ├── kunit.sh │ │ └── kunit.yaml │ ├── libc-bench │ │ ├── libc-bench.sh │ │ └── libc-bench.yaml │ ├── linaro-android-kernel-tests │ │ ├── linaro-android-kernel-tests.sh │ │ └── linaro-android-kernel-tests.yaml │ ├── media-codecs-functional-tests │ │ ├── linaro-android-userspace-tests.sh │ │ ├── media-codecs-functional-tests.sh │ │ └── media-codecs-functional-tests.yaml │ ├── meminfo │ │ ├── meminfo.sh │ │ └── meminfo.yaml │ ├── microbenchmarks │ │ ├── microbenchmarks.sh │ │ └── microbenchmarks.yaml │ ├── monkey │ │ ├── monkey.sh │ │ └── monkey.yaml │ ├── multinode │ │ ├── connect-to-remote-adb-tcpip-devices.yaml │ │ ├── release-remote-adb-tcpip-devices.yaml │ │ ├── remote-adb-devices-smoke-test.yaml │ │ ├── share-local-device-over-adb-tcpip.yaml │ │ ├── tradefed │ │ │ ├── example-job-template-cts-hikey.yaml │ │ │ ├── example-job-template-cts.yaml │ │ │ ├── sts_util.py │ │ │ ├── tradefed-multinode.sh │ │ │ ├── tradefed-multinode.yaml │ │ │ ├── tradefed-runner-multinode.py │ │ │ └── utils.py │ │ ├── wait-and-keep-local-device-accessible.sh │ │ ├── wait-and-keep-local-device-accessible.yaml │ │ └── wait-for-release-and-reset.yaml │ ├── noninteractive-tradefed │ │ ├── debug-fastboot.sh │ │ ├── monitor_adb.sh │ │ ├── monitor_fastboot.sh │ │ ├── setup.sh │ │ ├── tradefed-runner.py │ │ ├── tradefed.sh │ │ └── tradefed.yaml │ ├── optee │ │ ├── optee-gtest-gatekeeper-keymaster.sh │ │ ├── optee-gtest-gatekeeper-keymaster.yaml │ │ ├── optee-gtest-kmgk.sh │ │ ├── optee-gtest-kmgk.yaml │ │ ├── optee-xtest.sh │ │ └── optee-xtest.yaml │ ├── piglit-gles2 │ │ ├── device-script.sh │ │ ├── piglit-gles2.sh │ │ └── piglit-gles2.yaml │ ├── piglit-gles3 │ │ ├── device-script.sh │ │ ├── piglit-gles3.sh │ │ └── piglit-gles3.yaml │ ├── piglit-glslparser │ │ ├── device-script.sh │ │ ├── piglit-glslparser.sh │ │ └── piglit-glslparser.yaml │ ├── piglit-shader-runner │ │ ├── device-script.sh │ │ ├── piglit-shader-runner.sh │ │ └── piglit-shader-runner.yaml │ ├── ping │ │ ├── ping.sh │ │ └── ping.yaml │ ├── pm-qa │ │ ├── device-script.sh │ │ ├── pm-qa.sh │ │ └── pm-qa.yaml │ ├── stringbench │ │ ├── stringbench.sh │ │ └── stringbench.yaml │ ├── tjbench │ │ ├── tjbench.sh │ │ └── tjbench.yaml │ ├── tradefed │ │ ├── monitor_fastboot.sh │ │ ├── result_parser.py │ │ ├── setup.sh │ │ ├── tradefed-runner.py │ │ ├── tradefed.sh │ │ └── tradefed.yaml │ ├── wait-single-boot-completed.yaml │ ├── wait-single-network-connected.yaml │ ├── workload-automation │ │ ├── aep-energy-config.sh │ │ ├── aep-install.sh │ │ ├── aep-install.yaml │ │ ├── workload-automation.sh │ │ └── workload-automation.yaml │ └── workload-automation3 │ │ ├── aep-energy-config.sh │ │ ├── aep-install.sh │ │ ├── aep-install.yaml │ │ ├── workload-automation.sh │ │ └── workload-automation.yaml ├── bin │ ├── arm64 │ │ ├── busybox │ │ └── skipgen │ ├── armeabi │ │ ├── busybox │ │ └── skipgen │ ├── fetch_skipgen.sh │ ├── i386 │ │ └── skipgen │ ├── riscv64 │ │ └── skipgen │ ├── setenv.sh │ ├── test-runner │ └── x86_64 │ │ └── skipgen ├── lib │ ├── android-multinode-test-lib │ ├── android-test-lib │ ├── android_adb_wrapper.py │ ├── android_ui_wifi.py │ ├── parse_junitxml.py │ ├── parse_rt_tests_results.py │ ├── py_test_lib.py │ ├── py_util_lib.py │ └── sh-test-lib ├── linux │ ├── 24h-stress-test │ │ ├── 24h-stress-test.sh │ │ └── 24h-stress-test.yaml │ ├── aep-pre-post │ │ ├── lisa-postprocessing.yaml │ │ ├── lisa.sh │ │ └── postprocess_lisa_results.py │ ├── aklite-apps │ │ ├── aklite-apps.sh │ │ ├── aklite-apps.yaml │ │ ├── apps-early-start.sh │ │ └── apps-early-start.yaml │ ├── aklite-download-interrupt │ │ ├── aklite-callback.sh │ │ ├── aklite-download-confirm.sh │ │ ├── aklite-download-confirm.yaml │ │ ├── aklite-download-interrupt.sh │ │ ├── aklite-download-interrupt.yaml │ │ ├── aklite-download-resume.sh │ │ ├── aklite-download-resume.yaml │ │ └── z-99-aklite-callback.toml │ ├── aklite │ │ ├── aklite.sh │ │ └── aklite.yaml │ ├── alsa-bat │ │ ├── bat.sh │ │ └── bat.yaml │ ├── alsa-smoke │ │ ├── alsa-smoke.sh │ │ └── alsa-smoke.yaml │ ├── android-platform-tools │ │ ├── install.sh │ │ └── install.yaml │ ├── apache-apache-bench │ │ ├── apache-bench.sh │ │ ├── apache-bench.yaml │ │ └── html │ │ │ └── index.html │ ├── armnn-benchmarks │ │ ├── armnn-benchmarking.yaml │ │ └── armnn-mlperf.sh │ ├── armnn │ │ ├── armnn-unit-tests.yaml │ │ ├── armnn.sh │ │ └── pyarmnn-bench.yaml │ ├── badblocks │ │ ├── badblocks.sh │ │ └── badblocks.yaml │ ├── block-device │ │ ├── block-device.sh │ │ └── block-device.yaml │ ├── blogbench │ │ ├── bin │ │ │ ├── COPYING │ │ │ ├── README │ │ │ ├── arm64 │ │ │ │ └── blogbench │ │ │ └── armeabi │ │ │ │ └── blogbench │ │ ├── blogbench.sh │ │ └── blogbench.yaml │ ├── bootrr │ │ ├── bootrr.sh │ │ └── bootrr.yaml │ ├── busybox │ │ ├── busybox.sh │ │ └── busybox.yaml │ ├── chroot │ │ ├── download_and_mount.sh │ │ ├── kselftest_chroot.yaml │ │ ├── ltp_chroot.yaml │ │ ├── post_setup_run.sh │ │ └── pre_setup_run.sh │ ├── crypto │ │ ├── crypto.sh │ │ ├── crypto.yaml │ │ ├── cryptsetup.sh │ │ └── cryptsetup.yaml │ ├── cyclicdeadline │ │ ├── bin │ │ │ ├── README │ │ │ ├── arm64 │ │ │ │ └── cyclicdeadline │ │ │ ├── armeabi │ │ │ │ └── cyclicdeadline │ │ │ └── x86_64 │ │ │ │ └── cyclicdeadline │ │ ├── cyclicdeadline.sh │ │ └── cyclicdeadline.yaml │ ├── cyclictest │ │ ├── bin │ │ │ ├── README │ │ │ ├── arm64 │ │ │ │ └── cyclictest │ │ │ ├── armeabi │ │ │ │ └── cyclictest │ │ │ └── x86_64 │ │ │ │ └── cyclictest │ │ ├── cyclictest.sh │ │ └── cyclictest.yaml │ ├── dd-wr-speed │ │ ├── dd-wr-speed.sh │ │ └── dd-wr-speed.yaml │ ├── deqp-runner │ │ ├── deqp-runner.sh │ │ └── deqp-runner.yaml │ ├── device-read-perf │ │ ├── device-read-perf.sh │ │ └── device-read-perf.yaml │ ├── device-tree │ │ ├── device-tree.sh │ │ └── device-tree.yaml │ ├── disable-aklite-reboot │ │ ├── disable-aklite-reboot.sh │ │ ├── disable-aklite-reboot.yaml │ │ └── z-99-aklite-callback.toml │ ├── disk-partitioning │ │ ├── disk-partitioning.sh │ │ └── disk-partitioning.yaml │ ├── docker-integration-test │ │ ├── local-daemon.sh │ │ └── local-daemon.yaml │ ├── docker-networking │ │ ├── docker-networking.sh │ │ └── docker-networking.yaml │ ├── docker-prune │ │ ├── aklite-callback.sh │ │ ├── disable-prune.sh │ │ ├── disable-prune.yaml │ │ ├── prune-lib.sh │ │ ├── prune.sh │ │ ├── prune.yaml │ │ └── z-99-aklite-callback.toml │ ├── docker │ │ ├── docker.sh │ │ └── docker.yaml │ ├── dockerized-tests │ │ ├── README.MD │ │ ├── local-run.sh │ │ ├── local-run.yaml │ │ ├── over-ssh.sh │ │ └── over-ssh.yaml │ ├── dsdbench │ │ ├── dsdbench.sh │ │ └── dsdbench.yaml │ ├── el2go │ │ ├── el2go.sh │ │ ├── el2go.yaml │ │ └── z-99-el2go.toml │ ├── ethernet │ │ ├── ethernet.sh │ │ └── ethernet.yaml │ ├── factory-reset │ │ ├── aklite-callback.sh │ │ ├── prepare-reset.sh │ │ ├── prepare-reset.yaml │ │ ├── verify-reboot.sh │ │ ├── verify-reboot.yaml │ │ ├── z-99-aklite-callback.toml │ │ └── z-99-aklite-disable-reboot.toml │ ├── fdisk │ │ ├── fdisk.sh │ │ └── fdisk.yaml │ ├── fio-test │ │ ├── fio-test.sh │ │ └── fio-test.yaml │ ├── fs-resize │ │ ├── fs-resize.sh │ │ └── fs-resize.yaml │ ├── fuego-multinode │ │ ├── README.MD │ │ ├── boards │ │ │ ├── generic-arm64.board │ │ │ ├── generic-armhf.board │ │ │ └── generic-x86_64.board │ │ ├── fuego-dut.yaml │ │ ├── fuego-host.yaml │ │ ├── fuego.sh │ │ ├── lava-multinode-job-example-fuego.yaml │ │ ├── parser.py │ │ └── setup-openssh-server.sh │ ├── fwts │ │ ├── fwts.sh │ │ └── fwts.yaml │ ├── glmark2 │ │ ├── glmark2.yaml │ │ └── glmark2_lava_parse.py │ ├── gpiod │ │ ├── gpiod.sh │ │ ├── gpiod.yaml │ │ └── parse-output.py │ ├── gst-validate │ │ ├── README │ │ ├── gst-validate.yaml │ │ └── gst_validate_lava_parse.py │ ├── hackbench │ │ ├── bin │ │ │ ├── README │ │ │ ├── arm64 │ │ │ │ └── hackbench │ │ │ ├── armeabi │ │ │ │ └── hackbench │ │ │ └── x86_64 │ │ │ │ └── hackbench │ │ ├── hackbench.sh │ │ └── hackbench.yaml │ ├── hci-smoke │ │ ├── hci-smoke-test.sh │ │ └── hci-smoke.yaml │ ├── httperf-client │ │ ├── httperf-client.sh │ │ └── httperf-client.yaml │ ├── igt │ │ ├── control_chamelium.sh │ │ ├── igt-test.sh │ │ ├── igt-test.yaml │ │ ├── kms-testlist.txt │ │ └── print-test-result.py │ ├── ima │ │ ├── ima.sh │ │ └── ima.yaml │ ├── iozone │ │ ├── iozone.sh │ │ └── iozone.yaml │ ├── iperf │ │ ├── iperf-client.yaml │ │ ├── iperf-server.yaml │ │ ├── iperf.sh │ │ └── lava-multinode-job-example-iperf.yaml │ ├── isolate-task │ │ ├── isolate-task-verify.sh │ │ └── isolate-task.yaml │ ├── kernel-compilation │ │ ├── kernel-compilation.sh │ │ └── kernel-compilation.yaml │ ├── kernel-config-checker │ │ ├── kernel-config-checker.sh │ │ └── kernel-config-checker.yaml │ ├── kselftest │ │ ├── kselftest-skipfile │ │ ├── kselftest.sh │ │ ├── kselftest.yaml │ │ ├── parse-output.py │ │ └── skipfile-lkft.yaml │ ├── kunit │ │ ├── kunit.sh │ │ ├── kunit.yaml │ │ └── parse-output.py │ ├── kvm-unit-tests │ │ ├── kvm-unit-tests.sh │ │ ├── kvm-unit-tests.yaml │ │ └── parse-output.py │ ├── kvm │ │ ├── cloudinit.txt │ │ ├── start-kvm.sh │ │ ├── start-kvm.yaml │ │ ├── stop-guest.yaml │ │ ├── wait-ip.py │ │ └── wait-kvm.sh │ ├── labgrid │ │ ├── README.md │ │ ├── labgrid.yaml │ │ ├── tests │ │ │ └── example │ │ │ │ ├── env.yaml │ │ │ │ ├── test_shell.py │ │ │ │ ├── test_shell_strategy.py │ │ │ │ └── test_uboot_strategy.py │ │ └── update_env.py │ ├── lamp │ │ ├── html │ │ │ ├── add-record.php │ │ │ ├── connect-db.php │ │ │ ├── create-db.php │ │ │ ├── create-table.php │ │ │ ├── delete-record.php │ │ │ ├── index.html │ │ │ ├── info.php │ │ │ └── select-record.php │ │ ├── lamp.sh │ │ └── lamp.yaml │ ├── lapack │ │ ├── lapack.sh │ │ └── lapack.yaml │ ├── lemp │ │ ├── centos-nginx.conf │ │ ├── debian-nginx.conf │ │ ├── html │ │ │ ├── add-record.php │ │ │ ├── connect-db.php │ │ │ ├── create-db.php │ │ │ ├── create-table.php │ │ │ ├── delete-record.php │ │ │ ├── index.html │ │ │ ├── info.php │ │ │ └── select-record.php │ │ ├── lemp.sh │ │ └── lemp.yaml │ ├── libcurl │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── httpd.conf │ │ ├── libcurl.sh │ │ └── libcurl.yaml │ ├── libhugetlbfs │ │ ├── libhugetlbfs.sh │ │ └── libhugetlbfs.yaml │ ├── linpack │ │ ├── bin │ │ │ ├── README │ │ │ ├── arm64 │ │ │ │ └── linpack │ │ │ └── armeabi │ │ │ │ └── linpack │ │ ├── linpack.sh │ │ └── linpack.yaml │ ├── lkp │ │ ├── lkp.sh │ │ └── lkp.yaml │ ├── lmbench │ │ ├── bin │ │ │ ├── COPYING │ │ │ ├── COPYING-2 │ │ │ ├── README │ │ │ ├── arm64 │ │ │ │ ├── bw_mem │ │ │ │ └── lat_mem_rd │ │ │ ├── armeabi │ │ │ │ ├── bw_mem │ │ │ │ └── lat_mem_rd │ │ │ └── x86 │ │ │ │ ├── bw_mem │ │ │ │ └── lat_mem_rd │ │ ├── lmbench-memory.sh │ │ └── lmbench-memory.yaml │ ├── lmp-device-register │ │ ├── check_toml.py │ │ ├── lmp-device-register.sh │ │ ├── lmp-device-register.yaml │ │ └── z-99-aklite-callback.toml │ ├── lshw │ │ ├── lshw.sh │ │ └── lshw.yaml │ ├── ltp-open-posix │ │ ├── ltp-open-posix.sh │ │ └── ltp-open-posix.yaml │ ├── ltp-realtime │ │ ├── ltp-realtime.py │ │ ├── ltp-realtime.sh │ │ └── ltp-realtime.yaml │ ├── ltp │ │ ├── ltp.sh │ │ ├── ltp.yaml │ │ ├── skipfile-lkft.yaml │ │ ├── skipfile-lsk-juno │ │ ├── skipfile-rpk │ │ └── skipfiles │ │ │ ├── skipfile-lsk-juno │ │ │ └── skipfile-rpk │ ├── meminfo │ │ ├── meminfo.sh │ │ └── meminfo.yaml │ ├── memtester │ │ ├── memtester.sh │ │ └── memtester.yaml │ ├── ml-bench │ │ ├── tvm-bench.sh │ │ └── tvm-bench.yaml │ ├── mmc │ │ ├── mmc-test.sh │ │ └── mmc-test.yaml │ ├── mmtests │ │ ├── collector.py │ │ ├── json-to-lava.py │ │ ├── mmtests.sh │ │ └── mmtests.yaml │ ├── modules │ │ ├── modules.sh │ │ └── modules.yaml │ ├── network-basic │ │ ├── network-basic.sh │ │ └── network-basic.yaml │ ├── network-manager │ │ ├── network-manager.sh │ │ └── network-manager.yaml │ ├── nginx-apache-bench │ │ ├── apache-bench.sh │ │ └── apache-bench.yaml │ ├── nginx-server │ │ ├── linux-ip.sh │ │ ├── nginx-linux.yaml │ │ ├── nginx-odp-dpdk-git.yaml │ │ ├── nginx-odp-dpdk.yaml │ │ ├── nginx-server.sh │ │ ├── odp-dpdk-git.sh │ │ └── odp-dpdk.sh │ ├── offline-update │ │ ├── offline-run.sh │ │ ├── offline-run.yaml │ │ ├── offline-update.sh │ │ ├── offline-update.yaml │ │ ├── z-99-aklite-callback-ostree.toml │ │ └── z-99-aklite-callback.toml │ ├── openjdk │ │ ├── openjdk-smoke.sh │ │ └── openjdk-smoke.yaml │ ├── openssh │ │ ├── openssh-debian.sh │ │ └── openssh-debian.yaml │ ├── openssl │ │ ├── openssl-speed.sh │ │ └── openssl-speed.yaml │ ├── optee │ │ ├── optee-xtest-qemu.yaml │ │ ├── optee-xtest.sh │ │ └── optee-xtest.yaml │ ├── ostree │ │ ├── ostree.sh │ │ └── ostree.yaml │ ├── ota-apps │ │ ├── aklite-callback.sh │ │ ├── ota-apps.yaml │ │ ├── switch-apps.sh │ │ ├── switch-apps.yaml │ │ ├── update-apps.sh │ │ ├── z-99-aklite-callback.toml │ │ └── z-99-aklite-disable-reboot.toml │ ├── ota-rollback │ │ ├── README.md │ │ ├── aklite-callback.sh │ │ ├── download-update.sh │ │ ├── download-update.yaml │ │ ├── verify-reboot.sh │ │ ├── verify-reboot.yaml │ │ ├── verify-rollback.sh │ │ ├── verify-rollback.yaml │ │ ├── z-99-aklite-callback.toml │ │ ├── z-99-aklite-disable-reboot.toml │ │ └── z-99-ostree.toml │ ├── ota-update │ │ ├── README.md │ │ ├── aklite-callback.sh │ │ ├── download-update.sh │ │ ├── download-update.yaml │ │ ├── static-delta.sh │ │ ├── static-delta.yaml │ │ ├── verify-reboot.sh │ │ ├── verify-reboot.yaml │ │ ├── verify-update.sh │ │ ├── verify-update.yaml │ │ ├── z-99-aklite-callback.toml │ │ ├── z-99-aklite-disable-reboot.toml │ │ └── z-99-ostree.toml │ ├── overlayfs │ │ ├── overlayfs.sh │ │ └── overlayfs.yaml │ ├── packetdrill │ │ ├── packetdrill.sh │ │ └── packetdrill.yaml │ ├── perf │ │ ├── parse-output.py │ │ ├── perf.sh │ │ └── perf.yaml │ ├── peripherals │ │ ├── usb-gadget-framework.sh │ │ └── usb-gadget-framework.yaml │ ├── pi-stress │ │ ├── bin │ │ │ ├── README │ │ │ ├── arm64 │ │ │ │ └── pi_stress │ │ │ ├── armeabi │ │ │ │ └── pi_stress │ │ │ └── x86_64 │ │ │ │ └── pi_stress │ │ ├── pi-stress.sh │ │ └── pi-stress.yaml │ ├── piglit │ │ ├── piglit.yaml │ │ └── piglit_lava_parse.py │ ├── pkcs11 │ │ ├── pkcs11.sh │ │ └── pkcs11.yaml │ ├── pm-qa │ │ ├── pm-qa.sh │ │ └── pm-qa.yaml │ ├── pmqtest │ │ ├── bin │ │ │ ├── README │ │ │ ├── arm64 │ │ │ │ └── pmqtest │ │ │ ├── armeabi │ │ │ │ └── pmqtest │ │ │ └── x86_64 │ │ │ │ └── pmqtest │ │ ├── pmqtest.sh │ │ └── pmqtest.yaml │ ├── pointer-tagging │ │ ├── pointer-tagging-tests.sh │ │ └── pointer-tagging-tests.yaml │ ├── pritee_test_utility │ │ ├── pritee_test_utility.sh │ │ └── pritee_test_utility.yaml │ ├── ptest │ │ ├── ptest.py │ │ └── ptest.yaml │ ├── ptsematest │ │ ├── bin │ │ │ ├── README │ │ │ ├── arm64 │ │ │ │ └── ptsematest │ │ │ ├── armeabi │ │ │ │ └── ptsematest │ │ │ └── x86_64 │ │ │ │ └── ptsematest │ │ ├── ptsematest.sh │ │ └── ptsematest.yaml │ ├── rcutorture │ │ ├── rcutorture.sh │ │ └── rcutorture.yaml │ ├── rt-migrate-test │ │ ├── bin │ │ │ ├── README │ │ │ ├── arm64 │ │ │ │ └── rt-migrate-test │ │ │ ├── armeabi │ │ │ │ └── rt-migrate-test │ │ │ └── x86_64 │ │ │ │ └── rt-migrate-test │ │ ├── rt-migrate-test.sh │ │ └── rt-migrate-test.yaml │ ├── rteval │ │ ├── rteval.sh │ │ └── rteval.yaml │ ├── rtla │ │ ├── parse_rtla.py │ │ ├── rtla-osnoise.sh │ │ ├── rtla-osnoise.yaml │ │ ├── rtla-timerlat.sh │ │ └── rtla-timerlat.yaml │ ├── secure-boot │ │ ├── secure-boot-enabled.sh │ │ └── secure-boot-enabled.yaml │ ├── signaltest │ │ ├── bin │ │ │ ├── README │ │ │ ├── arm64 │ │ │ │ └── signaltest │ │ │ ├── armeabi │ │ │ │ └── signaltest │ │ │ └── x86_64 │ │ │ │ └── signaltest │ │ ├── signaltest.sh │ │ └── signaltest.yaml │ ├── sigwaittest │ │ ├── bin │ │ │ ├── README │ │ │ ├── arm64 │ │ │ │ └── sigwaittest │ │ │ ├── armeabi │ │ │ │ └── sigwaittest │ │ │ └── x86_64 │ │ │ │ └── sigwaittest │ │ ├── sigwaittest.sh │ │ └── sigwaittest.yaml │ ├── smoke │ │ ├── smoke.sh │ │ └── smoke.yaml │ ├── spectre-meltdown-checker-test │ │ ├── bin │ │ │ ├── LICENSE │ │ │ └── spectre-meltdown-checker.sh │ │ ├── spectre-meltdown-checker-test.sh │ │ └── spectre-meltdown-checker-test.yaml │ ├── ssuite │ │ ├── run-bench.sh │ │ └── ssuite-bench.yaml │ ├── stream │ │ ├── bin │ │ │ ├── LICENSE.txt │ │ │ ├── README │ │ │ ├── arm64 │ │ │ │ └── stream │ │ │ └── armeabi │ │ │ │ └── stream │ │ ├── stream-uniprocessor.sh │ │ └── stream-uniprocessor.yaml │ ├── svsematest │ │ ├── bin │ │ │ ├── README │ │ │ ├── arm64 │ │ │ │ └── svsematest │ │ │ ├── armeabi │ │ │ │ └── svsematest │ │ │ └── x86_64 │ │ │ │ └── svsematest │ │ ├── svsematest.sh │ │ └── svsematest.yaml │ ├── sysbench │ │ ├── sysbench.sh │ │ └── sysbench.yaml │ ├── sysfs-bus-iio-smoke │ │ ├── sysfs-bus-iio-smoke.sh │ │ └── sysfs-bus-iio-smoke.yaml │ ├── systemd-analyze │ │ ├── systemd-analyze.sh │ │ └── systemd-analyze.yaml │ ├── tcpreplay │ │ ├── pcap │ │ │ └── generate_pcap.py │ │ ├── tcpreplay.py │ │ └── tcpreplay.yaml │ ├── tensorflow │ │ ├── imagenet-resnet50.sh │ │ ├── imagenet-resnet50.yaml │ │ ├── imagenet-ssd-resnet34.sh │ │ ├── imagenet-ssd-resnet34.yaml │ │ ├── ssd-mobilenet.sh │ │ ├── ssd-mobilenet.yaml │ │ └── tensorflow-utils.sh │ ├── timesyncd │ │ ├── timesyncd.yaml │ │ ├── timesynctest.py │ │ └── timesynctest.sh │ ├── toolchain-smoke │ │ ├── hello.c │ │ ├── toolchain-smoke.sh │ │ └── toolchain-smoke.yaml │ ├── torizon │ │ ├── boot-tests.sh │ │ ├── boot-tests.yaml │ │ ├── bpf-tests.sh │ │ ├── bpf-tests.yaml │ │ ├── integration-tests.sh │ │ ├── integration-tests.yaml │ │ ├── lib.sh │ │ ├── ostree-rollback-tests.sh │ │ ├── ostree-rollback-tests.yaml │ │ ├── ostree-upgrade-tests.sh │ │ └── ostree-upgrade-tests.yaml │ ├── tvm │ │ ├── tvm-unit-tests.sh │ │ └── tvm-unit-tests.yaml │ ├── uart-loopback │ │ ├── uart-loopback.arm64 │ │ ├── uart-loopback.armeabi │ │ ├── uart-loopback.sh │ │ ├── uart-loopback.x86_64 │ │ └── uart-loopback.yaml │ ├── ui-browser-test │ │ ├── README.rst │ │ ├── install.sh │ │ ├── robot-results-parser.py │ │ ├── robot-test-scripts │ │ │ ├── chrome-test.robot │ │ │ ├── chromium-test.robot │ │ │ ├── youtube-play-linaro-connect.robot │ │ │ └── youtube-play.robot │ │ ├── run-robot-tests.sh │ │ ├── ui-browser-test.sh │ │ └── ui-browser-test.yaml │ ├── unixbench │ │ ├── unixbench.sh │ │ └── unixbench.yaml │ ├── usb-smoke │ │ ├── usb-smoke-test.sh │ │ └── usb-smoke-test.yaml │ ├── v4l2 │ │ ├── v4l2-compliance.sh │ │ └── v4l2-compliance.yaml │ ├── vdsotest │ │ ├── vdsotest.sh │ │ └── vdsotest.yaml │ ├── video │ │ ├── Dockerfile │ │ ├── compare.py │ │ ├── requirements.txt │ │ ├── video.sh │ │ └── video.yaml │ ├── widevine │ │ ├── widevine_unittest.sh │ │ └── widevine_unittest.yaml │ ├── wireguard-fioconfig │ │ ├── wg-pk.sh │ │ └── wg-pk.yaml │ ├── wlan-download │ │ ├── wlan-download-test.sh │ │ └── wlan-download.yaml │ ├── wlan-smoke │ │ ├── wlan-smoke-test.sh │ │ └── wlan-smoke.yaml │ ├── workload-automation │ │ ├── workload-automation.sh │ │ └── workload-automation.yaml │ ├── workload-automation3 │ │ ├── workload-automation.sh │ │ └── workload-automation.yaml │ ├── xenomai4 │ │ ├── xenomai4-smoke.sh │ │ └── xenomai4.yaml │ └── xfstests │ │ ├── xfstests.sh │ │ └── xfstests.yaml └── utils │ ├── httperf │ └── httperf-runner.py │ ├── parse-robot-framework.py │ ├── requirements.txt │ ├── send-to-lava.sh │ ├── test-runner.py │ ├── upload-to-artifactorial.sh │ ├── upload-to-squad.sh │ └── vland │ ├── get_vland_interface.sh │ ├── get_vland_mac.sh │ └── get_vland_pci_dev.sh ├── docs ├── extra.css ├── index.md ├── tags.md ├── test-runner.md └── test-writing-guidelines.md ├── manual ├── dragon410c │ └── dragon410c-user-led.yaml ├── enterprise │ ├── bigdata-hadoop-terasort.yaml │ ├── bigdata-hive.yaml │ ├── bigdata-spark-sparkpi.yaml │ └── openstack-ceph.yaml ├── foundries │ ├── aklite-full-disk.yaml │ ├── device-config-overwrite.yaml │ ├── fioctl-tags-apps.yaml │ ├── fleetwide-config.yaml │ ├── group-config.yaml │ ├── lmp-device-re-register.yaml │ ├── lmp-device-register-api.yaml │ ├── lmp-device-register-apps.yaml │ ├── lmp-device-register-delete.yaml │ ├── lmp-device-register-devel.yaml │ ├── lmp-device-register-disable-aktualizr.yaml │ ├── lmp-device-register-drive.yaml │ ├── lmp-device-register-hwid.yaml │ ├── lmp-device-register-invalid-api.yaml │ ├── lmp-device-register-invalid-app.yaml │ ├── lmp-device-register-invalid-token-header.yaml │ ├── lmp-device-register-token-header.yaml │ ├── lmp-device-register-uuid.yaml │ └── lmp-device-register.yaml ├── generic │ ├── 96boards │ │ ├── hikey-bluetooth-status-led.yaml │ │ ├── hikey-wifi-status-led.yaml │ │ ├── status-led-bluetooth.yaml │ │ └── status-led-wifi.yaml │ ├── android │ │ ├── adb-over-ethernet.yaml │ │ ├── adb-over-usb.yaml │ │ ├── android-hardware-usb.yaml │ │ ├── android-input-method-service.yaml │ │ ├── android-ui-auto-mount.yaml │ │ ├── android-version.yaml │ │ ├── angrybirds.yaml │ │ ├── arm-browser-benchmark.yaml │ │ ├── audio-jack.yaml │ │ ├── bluetooth-audio.yaml │ │ ├── bluetooth-ftp.yaml │ │ ├── bluetooth-pair.yaml │ │ ├── bluetooth-scan.yaml │ │ ├── bluetooth-tethering.yaml │ │ ├── browser-app.yaml │ │ ├── device-tree.yaml │ │ ├── display-blanking.yaml │ │ ├── download-install-apk.yaml │ │ ├── ds-5.yaml │ │ ├── ethernet.yaml │ │ ├── gallery-app.yaml │ │ ├── google-hangouts.yaml │ │ ├── hardware-graphics-acceleration.yaml │ │ ├── hardware-video.yaml │ │ ├── hwgfx.yaml │ │ ├── installation-instructions.yaml │ │ ├── large-wifi-file-transfer.yaml │ │ ├── linaro-android-build-command.yaml │ │ ├── linaro-kernel-build-command.yaml │ │ ├── monkeyrunner-test.yaml │ │ ├── open-accessory.yaml │ │ ├── perf.yaml │ │ ├── pm-qa.yaml │ │ ├── powerdebug.yaml │ │ ├── powertop.yaml │ │ ├── pre-built.yaml │ │ ├── primary-video-out-vga.yaml │ │ ├── reboot.yaml │ │ ├── sd-mmc.yaml │ │ ├── secondary-video-output.yaml │ │ ├── shutdown-console.yaml │ │ ├── shutdown.yaml │ │ ├── small-wifi-file-transfer.yaml │ │ ├── toolchain-version.yaml │ │ ├── usb-camera-record.yaml │ │ ├── usb-camera.yaml │ │ ├── usb-ethernet.yaml │ │ ├── usb-host-keyboard.yaml │ │ ├── usb-host-mouse.yaml │ │ ├── usb-host-storage.yaml │ │ ├── usb-tethering.yaml │ │ ├── wifi.yaml │ │ └── youtube.yaml │ ├── hdmi-audio.yaml │ ├── hdmi-input-switch.yaml │ ├── kernel-version.yaml │ ├── linux │ │ ├── bluetooth-audio-ui.yaml │ │ ├── bluetooth-audio.yaml │ │ ├── bluetooth-file-transfer-ui.yaml │ │ ├── bluetooth-pair-ui.yaml │ │ ├── bluetooth-pair.yaml │ │ ├── bluetooth-scan-ui.yaml │ │ ├── bluetooth-scan.yaml │ │ ├── disk-boot.yaml │ │ ├── display-blanking.yaml │ │ ├── ds5-remote-debug.yaml │ │ ├── ds5-ssh.yaml │ │ ├── hdmi-resolution-switching-cmd.yaml │ │ ├── hdmi-resolution-switching.yaml │ │ ├── ip-forwarding.yaml │ │ ├── kvm-arm32-guest-on-arm64-host.yaml │ │ ├── kvm-arm64-guest-on-arm64-host.yaml │ │ ├── luvos.yaml │ │ ├── multi-nic-download.yaml │ │ ├── network-basic.yaml │ │ ├── network-manager.yaml │ │ ├── opengl-fps.yaml │ │ ├── openssh-centos.sh │ │ ├── openssh-centos.yaml │ │ ├── openssl-centos.sh │ │ ├── openssl-centos.yaml │ │ ├── openssl-debian.yaml │ │ ├── ota-rollback.yaml │ │ ├── ota-update.yaml │ │ ├── power-off-cmd.yaml │ │ ├── power-off.yaml │ │ ├── pxe-boot.yaml │ │ ├── reboot-ui.yaml │ │ ├── reboot.yaml │ │ ├── sd-mmc.yaml │ │ ├── sdcard-cold-boot.yaml │ │ ├── sdcard-hot-plug.yaml │ │ ├── secondary-video-out.yaml │ │ ├── software-raid0.yaml │ │ ├── software-raid1.yaml │ │ ├── software-raid5.yaml │ │ ├── usb-3.0-arndale5250.yaml │ │ ├── usb-camera.yaml │ │ ├── usb-ethernet.yaml │ │ ├── usb-keyboard.yaml │ │ ├── usb-storage.yaml │ │ ├── wifi-large-download.yaml │ │ ├── wifi-small-download.yaml │ │ ├── wifi-teminal.yaml │ │ └── wifi.yaml │ ├── primary-video-out-hdmi.yaml │ ├── sdcard-speed-test.yaml │ ├── serial-console.yaml │ ├── usb-hid-device.yaml │ └── usb-storage.yaml └── hikey │ ├── hikey-power-button.yaml │ └── hikey-user-led.yaml ├── mkdocs.yml ├── mkdocs_plugin ├── __init__.py ├── pyproject.toml ├── requirements.txt └── testdefinitionsmkdocs │ └── __init__.py ├── plans ├── erp │ ├── erp-enterprise.yaml │ ├── erp-functional.yaml │ ├── erp-ltp.yaml │ ├── erp-performance.yaml │ ├── erp-stress.yaml │ └── overlays │ │ ├── centriq-2400.yaml │ │ ├── d03.yaml │ │ ├── d05.yaml │ │ ├── mt30-gs1-00.yaml │ │ └── proliant-m400-server.yaml ├── foundries-manufacturing-test-plan.yaml ├── linux-test-plan-example-v1.yaml ├── linux-test-plan-example.yaml ├── qcomlt │ ├── bench.yaml │ ├── smoke.yaml │ └── stress.yaml ├── requirements.txt ├── templates │ ├── _test_details.html │ ├── test.html │ ├── testplan.html │ └── testplan_v2.html ├── test-plan-overlay-example.yaml └── testplan2html.py ├── sanity-check.sh ├── test.sh ├── test ├── Dockerfile.centos └── Dockerfile.debian └── validate.py /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/reuse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/.github/workflows/reuse.yml -------------------------------------------------------------------------------- /.github/workflows/test-plans-pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/.github/workflows/test-plans-pipeline.yml -------------------------------------------------------------------------------- /.github/workflows/zstd-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/.github/workflows/zstd-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /.reuse/dep5: -------------------------------------------------------------------------------- 1 | ../COPYRIGHTS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/COPYING -------------------------------------------------------------------------------- /COPYRIGHTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/COPYRIGHTS -------------------------------------------------------------------------------- /LICENSES/GPL-2.0-only.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/LICENSES/GPL-2.0-only.txt -------------------------------------------------------------------------------- /LICENSES/GPL-3.0-only.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/LICENSES/GPL-3.0-only.txt -------------------------------------------------------------------------------- /LICENSES/ISC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/LICENSES/ISC.txt -------------------------------------------------------------------------------- /LICENSES/LicenseRef-stream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/LICENSES/LicenseRef-stream -------------------------------------------------------------------------------- /LICENSES/MIT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/LICENSES/MIT.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/README.md -------------------------------------------------------------------------------- /automated/android/adb-join-wifi/adb-join-wifi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/adb-join-wifi/adb-join-wifi.sh -------------------------------------------------------------------------------- /automated/android/adb-join-wifi/adb-join-wifi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/adb-join-wifi/adb-join-wifi.yaml -------------------------------------------------------------------------------- /automated/android/apk-automation/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | apks 3 | output 4 | -------------------------------------------------------------------------------- /automated/android/apk-automation/andebenchpro2015.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/apk-automation/andebenchpro2015.py -------------------------------------------------------------------------------- /automated/android/apk-automation/antutu6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/apk-automation/antutu6.py -------------------------------------------------------------------------------- /automated/android/apk-automation/apk-automation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/apk-automation/apk-automation.sh -------------------------------------------------------------------------------- /automated/android/apk-automation/apk-automation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/apk-automation/apk-automation.yaml -------------------------------------------------------------------------------- /automated/android/apk-automation/benchmarkpi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/apk-automation/benchmarkpi.py -------------------------------------------------------------------------------- /automated/android/apk-automation/caffeinemark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/apk-automation/caffeinemark.py -------------------------------------------------------------------------------- /automated/android/apk-automation/cf-bench.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/apk-automation/cf-bench.py -------------------------------------------------------------------------------- /automated/android/apk-automation/common/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/apk-automation/common/__init__.py -------------------------------------------------------------------------------- /automated/android/apk-automation/gearses2eclair.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/apk-automation/gearses2eclair.py -------------------------------------------------------------------------------- /automated/android/apk-automation/geekbench3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/apk-automation/geekbench3.py -------------------------------------------------------------------------------- /automated/android/apk-automation/geekbench4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/apk-automation/geekbench4.py -------------------------------------------------------------------------------- /automated/android/apk-automation/glbenchmark25.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/apk-automation/glbenchmark25.py -------------------------------------------------------------------------------- /automated/android/apk-automation/javawhetstone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/apk-automation/javawhetstone.py -------------------------------------------------------------------------------- /automated/android/apk-automation/jbench.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/apk-automation/jbench.py -------------------------------------------------------------------------------- /automated/android/apk-automation/linpack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/apk-automation/linpack.py -------------------------------------------------------------------------------- /automated/android/apk-automation/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/apk-automation/main.py -------------------------------------------------------------------------------- /automated/android/apk-automation/quadrantpro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/apk-automation/quadrantpro.py -------------------------------------------------------------------------------- /automated/android/apk-automation/rl-sqlite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/apk-automation/rl-sqlite.py -------------------------------------------------------------------------------- /automated/android/apk-automation/scimark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/apk-automation/scimark.py -------------------------------------------------------------------------------- /automated/android/apk-automation/vellamo3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/apk-automation/vellamo3.py -------------------------------------------------------------------------------- /automated/android/bionic-benchmarks/bionic-benchmarks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/bionic-benchmarks/bionic-benchmarks.sh -------------------------------------------------------------------------------- /automated/android/bionic-benchmarks/bionic-benchmarks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/bionic-benchmarks/bionic-benchmarks.yaml -------------------------------------------------------------------------------- /automated/android/bionic-benchmarks/device-script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/bionic-benchmarks/device-script.sh -------------------------------------------------------------------------------- /automated/android/bionic-libc-tests/bionic-libc-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/bionic-libc-tests/bionic-libc-tests.sh -------------------------------------------------------------------------------- /automated/android/bionic-libc-tests/bionic-libc-tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/bionic-libc-tests/bionic-libc-tests.yaml -------------------------------------------------------------------------------- /automated/android/bionic-libc-tests/device-script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/bionic-libc-tests/device-script.sh -------------------------------------------------------------------------------- /automated/android/bootchart/bootchart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/bootchart/bootchart.sh -------------------------------------------------------------------------------- /automated/android/bootchart/bootchart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/bootchart/bootchart.yaml -------------------------------------------------------------------------------- /automated/android/bootchart/device-script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/bootchart/device-script.sh -------------------------------------------------------------------------------- /automated/android/bootstat/bootstat_v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/bootstat/bootstat_v1.yaml -------------------------------------------------------------------------------- /automated/android/bootstat/device-script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/bootstat/device-script.sh -------------------------------------------------------------------------------- /automated/android/boottime/boottime.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/boottime/boottime.sh -------------------------------------------------------------------------------- /automated/android/boottime/boottime.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/boottime/boottime.yaml -------------------------------------------------------------------------------- /automated/android/boottime/device-script-master.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/boottime/device-script-master.sh -------------------------------------------------------------------------------- /automated/android/boottime/device-script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/boottime/device-script.sh -------------------------------------------------------------------------------- /automated/android/busybox/busybox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/busybox/busybox.sh -------------------------------------------------------------------------------- /automated/android/busybox/busybox.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/busybox/busybox.yaml -------------------------------------------------------------------------------- /automated/android/busybox/device-script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/busybox/device-script.sh -------------------------------------------------------------------------------- /automated/android/dd-wr-speed/dd-wr-speed.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/dd-wr-speed/dd-wr-speed.sh -------------------------------------------------------------------------------- /automated/android/dd-wr-speed/dd-wr-speed.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/dd-wr-speed/dd-wr-speed.yaml -------------------------------------------------------------------------------- /automated/android/dd-wr-speed/device-script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/dd-wr-speed/device-script.sh -------------------------------------------------------------------------------- /automated/android/ion-monitor-tool/example-job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/ion-monitor-tool/example-job.yaml -------------------------------------------------------------------------------- /automated/android/ion-monitor-tool/ion-monitor-tool.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/ion-monitor-tool/ion-monitor-tool.yaml -------------------------------------------------------------------------------- /automated/android/ion-monitor-tool/runner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/ion-monitor-tool/runner.sh -------------------------------------------------------------------------------- /automated/android/ion-monitor-tool/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/ion-monitor-tool/setup.sh -------------------------------------------------------------------------------- /automated/android/kunit/kunit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/kunit/kunit.sh -------------------------------------------------------------------------------- /automated/android/kunit/kunit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/kunit/kunit.yaml -------------------------------------------------------------------------------- /automated/android/libc-bench/libc-bench.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/libc-bench/libc-bench.sh -------------------------------------------------------------------------------- /automated/android/libc-bench/libc-bench.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/libc-bench/libc-bench.yaml -------------------------------------------------------------------------------- /automated/android/meminfo/meminfo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/meminfo/meminfo.sh -------------------------------------------------------------------------------- /automated/android/meminfo/meminfo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/meminfo/meminfo.yaml -------------------------------------------------------------------------------- /automated/android/microbenchmarks/microbenchmarks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/microbenchmarks/microbenchmarks.sh -------------------------------------------------------------------------------- /automated/android/microbenchmarks/microbenchmarks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/microbenchmarks/microbenchmarks.yaml -------------------------------------------------------------------------------- /automated/android/monkey/monkey.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/monkey/monkey.sh -------------------------------------------------------------------------------- /automated/android/monkey/monkey.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/monkey/monkey.yaml -------------------------------------------------------------------------------- /automated/android/multinode/tradefed/sts_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/multinode/tradefed/sts_util.py -------------------------------------------------------------------------------- /automated/android/multinode/tradefed/tradefed-multinode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/multinode/tradefed/tradefed-multinode.sh -------------------------------------------------------------------------------- /automated/android/multinode/tradefed/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/multinode/tradefed/utils.py -------------------------------------------------------------------------------- /automated/android/multinode/wait-for-release-and-reset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/multinode/wait-for-release-and-reset.yaml -------------------------------------------------------------------------------- /automated/android/noninteractive-tradefed/debug-fastboot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/noninteractive-tradefed/debug-fastboot.sh -------------------------------------------------------------------------------- /automated/android/noninteractive-tradefed/monitor_adb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/noninteractive-tradefed/monitor_adb.sh -------------------------------------------------------------------------------- /automated/android/noninteractive-tradefed/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/noninteractive-tradefed/setup.sh -------------------------------------------------------------------------------- /automated/android/noninteractive-tradefed/tradefed.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/noninteractive-tradefed/tradefed.sh -------------------------------------------------------------------------------- /automated/android/noninteractive-tradefed/tradefed.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/noninteractive-tradefed/tradefed.yaml -------------------------------------------------------------------------------- /automated/android/optee/optee-gtest-gatekeeper-keymaster.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/optee/optee-gtest-gatekeeper-keymaster.sh -------------------------------------------------------------------------------- /automated/android/optee/optee-gtest-kmgk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/optee/optee-gtest-kmgk.sh -------------------------------------------------------------------------------- /automated/android/optee/optee-gtest-kmgk.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/optee/optee-gtest-kmgk.yaml -------------------------------------------------------------------------------- /automated/android/optee/optee-xtest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/optee/optee-xtest.sh -------------------------------------------------------------------------------- /automated/android/optee/optee-xtest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/optee/optee-xtest.yaml -------------------------------------------------------------------------------- /automated/android/piglit-gles2/device-script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/piglit-gles2/device-script.sh -------------------------------------------------------------------------------- /automated/android/piglit-gles2/piglit-gles2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/piglit-gles2/piglit-gles2.sh -------------------------------------------------------------------------------- /automated/android/piglit-gles2/piglit-gles2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/piglit-gles2/piglit-gles2.yaml -------------------------------------------------------------------------------- /automated/android/piglit-gles3/device-script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/piglit-gles3/device-script.sh -------------------------------------------------------------------------------- /automated/android/piglit-gles3/piglit-gles3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/piglit-gles3/piglit-gles3.sh -------------------------------------------------------------------------------- /automated/android/piglit-gles3/piglit-gles3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/piglit-gles3/piglit-gles3.yaml -------------------------------------------------------------------------------- /automated/android/piglit-glslparser/device-script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/piglit-glslparser/device-script.sh -------------------------------------------------------------------------------- /automated/android/piglit-glslparser/piglit-glslparser.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/piglit-glslparser/piglit-glslparser.sh -------------------------------------------------------------------------------- /automated/android/piglit-glslparser/piglit-glslparser.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/piglit-glslparser/piglit-glslparser.yaml -------------------------------------------------------------------------------- /automated/android/piglit-shader-runner/device-script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/piglit-shader-runner/device-script.sh -------------------------------------------------------------------------------- /automated/android/ping/ping.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/ping/ping.sh -------------------------------------------------------------------------------- /automated/android/ping/ping.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/ping/ping.yaml -------------------------------------------------------------------------------- /automated/android/pm-qa/device-script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/pm-qa/device-script.sh -------------------------------------------------------------------------------- /automated/android/pm-qa/pm-qa.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/pm-qa/pm-qa.sh -------------------------------------------------------------------------------- /automated/android/pm-qa/pm-qa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/pm-qa/pm-qa.yaml -------------------------------------------------------------------------------- /automated/android/stringbench/stringbench.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/stringbench/stringbench.sh -------------------------------------------------------------------------------- /automated/android/stringbench/stringbench.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/stringbench/stringbench.yaml -------------------------------------------------------------------------------- /automated/android/tjbench/tjbench.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/tjbench/tjbench.sh -------------------------------------------------------------------------------- /automated/android/tjbench/tjbench.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/tjbench/tjbench.yaml -------------------------------------------------------------------------------- /automated/android/tradefed/monitor_fastboot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/tradefed/monitor_fastboot.sh -------------------------------------------------------------------------------- /automated/android/tradefed/result_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/tradefed/result_parser.py -------------------------------------------------------------------------------- /automated/android/tradefed/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/tradefed/setup.sh -------------------------------------------------------------------------------- /automated/android/tradefed/tradefed-runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/tradefed/tradefed-runner.py -------------------------------------------------------------------------------- /automated/android/tradefed/tradefed.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/tradefed/tradefed.sh -------------------------------------------------------------------------------- /automated/android/tradefed/tradefed.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/tradefed/tradefed.yaml -------------------------------------------------------------------------------- /automated/android/wait-single-boot-completed.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/wait-single-boot-completed.yaml -------------------------------------------------------------------------------- /automated/android/wait-single-network-connected.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/wait-single-network-connected.yaml -------------------------------------------------------------------------------- /automated/android/workload-automation/aep-energy-config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/workload-automation/aep-energy-config.sh -------------------------------------------------------------------------------- /automated/android/workload-automation/aep-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/workload-automation/aep-install.sh -------------------------------------------------------------------------------- /automated/android/workload-automation/aep-install.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/workload-automation/aep-install.yaml -------------------------------------------------------------------------------- /automated/android/workload-automation3/aep-energy-config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/workload-automation3/aep-energy-config.sh -------------------------------------------------------------------------------- /automated/android/workload-automation3/aep-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/workload-automation3/aep-install.sh -------------------------------------------------------------------------------- /automated/android/workload-automation3/aep-install.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/android/workload-automation3/aep-install.yaml -------------------------------------------------------------------------------- /automated/bin/arm64/busybox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/bin/arm64/busybox -------------------------------------------------------------------------------- /automated/bin/arm64/skipgen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/bin/arm64/skipgen -------------------------------------------------------------------------------- /automated/bin/armeabi/busybox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/bin/armeabi/busybox -------------------------------------------------------------------------------- /automated/bin/armeabi/skipgen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/bin/armeabi/skipgen -------------------------------------------------------------------------------- /automated/bin/fetch_skipgen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/bin/fetch_skipgen.sh -------------------------------------------------------------------------------- /automated/bin/i386/skipgen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/bin/i386/skipgen -------------------------------------------------------------------------------- /automated/bin/riscv64/skipgen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/bin/riscv64/skipgen -------------------------------------------------------------------------------- /automated/bin/setenv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/bin/setenv.sh -------------------------------------------------------------------------------- /automated/bin/test-runner: -------------------------------------------------------------------------------- 1 | ../utils/test-runner.py -------------------------------------------------------------------------------- /automated/bin/x86_64/skipgen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/bin/x86_64/skipgen -------------------------------------------------------------------------------- /automated/lib/android-multinode-test-lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/lib/android-multinode-test-lib -------------------------------------------------------------------------------- /automated/lib/android-test-lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/lib/android-test-lib -------------------------------------------------------------------------------- /automated/lib/android_adb_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/lib/android_adb_wrapper.py -------------------------------------------------------------------------------- /automated/lib/android_ui_wifi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/lib/android_ui_wifi.py -------------------------------------------------------------------------------- /automated/lib/parse_junitxml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/lib/parse_junitxml.py -------------------------------------------------------------------------------- /automated/lib/parse_rt_tests_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/lib/parse_rt_tests_results.py -------------------------------------------------------------------------------- /automated/lib/py_test_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/lib/py_test_lib.py -------------------------------------------------------------------------------- /automated/lib/py_util_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/lib/py_util_lib.py -------------------------------------------------------------------------------- /automated/lib/sh-test-lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/lib/sh-test-lib -------------------------------------------------------------------------------- /automated/linux/24h-stress-test/24h-stress-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/24h-stress-test/24h-stress-test.sh -------------------------------------------------------------------------------- /automated/linux/24h-stress-test/24h-stress-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/24h-stress-test/24h-stress-test.yaml -------------------------------------------------------------------------------- /automated/linux/aep-pre-post/lisa-postprocessing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/aep-pre-post/lisa-postprocessing.yaml -------------------------------------------------------------------------------- /automated/linux/aep-pre-post/lisa.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/aep-pre-post/lisa.sh -------------------------------------------------------------------------------- /automated/linux/aep-pre-post/postprocess_lisa_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/aep-pre-post/postprocess_lisa_results.py -------------------------------------------------------------------------------- /automated/linux/aklite-apps/aklite-apps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/aklite-apps/aklite-apps.sh -------------------------------------------------------------------------------- /automated/linux/aklite-apps/aklite-apps.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/aklite-apps/aklite-apps.yaml -------------------------------------------------------------------------------- /automated/linux/aklite-apps/apps-early-start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/aklite-apps/apps-early-start.sh -------------------------------------------------------------------------------- /automated/linux/aklite-apps/apps-early-start.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/aklite-apps/apps-early-start.yaml -------------------------------------------------------------------------------- /automated/linux/aklite/aklite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/aklite/aklite.sh -------------------------------------------------------------------------------- /automated/linux/aklite/aklite.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/aklite/aklite.yaml -------------------------------------------------------------------------------- /automated/linux/alsa-bat/bat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/alsa-bat/bat.sh -------------------------------------------------------------------------------- /automated/linux/alsa-bat/bat.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/alsa-bat/bat.yaml -------------------------------------------------------------------------------- /automated/linux/alsa-smoke/alsa-smoke.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/alsa-smoke/alsa-smoke.sh -------------------------------------------------------------------------------- /automated/linux/alsa-smoke/alsa-smoke.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/alsa-smoke/alsa-smoke.yaml -------------------------------------------------------------------------------- /automated/linux/android-platform-tools/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/android-platform-tools/install.sh -------------------------------------------------------------------------------- /automated/linux/android-platform-tools/install.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/android-platform-tools/install.yaml -------------------------------------------------------------------------------- /automated/linux/apache-apache-bench/apache-bench.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/apache-apache-bench/apache-bench.sh -------------------------------------------------------------------------------- /automated/linux/apache-apache-bench/apache-bench.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/apache-apache-bench/apache-bench.yaml -------------------------------------------------------------------------------- /automated/linux/apache-apache-bench/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/apache-apache-bench/html/index.html -------------------------------------------------------------------------------- /automated/linux/armnn-benchmarks/armnn-benchmarking.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/armnn-benchmarks/armnn-benchmarking.yaml -------------------------------------------------------------------------------- /automated/linux/armnn-benchmarks/armnn-mlperf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/armnn-benchmarks/armnn-mlperf.sh -------------------------------------------------------------------------------- /automated/linux/armnn/armnn-unit-tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/armnn/armnn-unit-tests.yaml -------------------------------------------------------------------------------- /automated/linux/armnn/armnn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/armnn/armnn.sh -------------------------------------------------------------------------------- /automated/linux/armnn/pyarmnn-bench.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/armnn/pyarmnn-bench.yaml -------------------------------------------------------------------------------- /automated/linux/badblocks/badblocks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/badblocks/badblocks.sh -------------------------------------------------------------------------------- /automated/linux/badblocks/badblocks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/badblocks/badblocks.yaml -------------------------------------------------------------------------------- /automated/linux/block-device/block-device.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/block-device/block-device.sh -------------------------------------------------------------------------------- /automated/linux/block-device/block-device.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/block-device/block-device.yaml -------------------------------------------------------------------------------- /automated/linux/blogbench/bin/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/blogbench/bin/COPYING -------------------------------------------------------------------------------- /automated/linux/blogbench/bin/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/blogbench/bin/README -------------------------------------------------------------------------------- /automated/linux/blogbench/bin/arm64/blogbench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/blogbench/bin/arm64/blogbench -------------------------------------------------------------------------------- /automated/linux/blogbench/bin/armeabi/blogbench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/blogbench/bin/armeabi/blogbench -------------------------------------------------------------------------------- /automated/linux/blogbench/blogbench.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/blogbench/blogbench.sh -------------------------------------------------------------------------------- /automated/linux/blogbench/blogbench.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/blogbench/blogbench.yaml -------------------------------------------------------------------------------- /automated/linux/bootrr/bootrr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/bootrr/bootrr.sh -------------------------------------------------------------------------------- /automated/linux/bootrr/bootrr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/bootrr/bootrr.yaml -------------------------------------------------------------------------------- /automated/linux/busybox/busybox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/busybox/busybox.sh -------------------------------------------------------------------------------- /automated/linux/busybox/busybox.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/busybox/busybox.yaml -------------------------------------------------------------------------------- /automated/linux/chroot/download_and_mount.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/chroot/download_and_mount.sh -------------------------------------------------------------------------------- /automated/linux/chroot/kselftest_chroot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/chroot/kselftest_chroot.yaml -------------------------------------------------------------------------------- /automated/linux/chroot/ltp_chroot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/chroot/ltp_chroot.yaml -------------------------------------------------------------------------------- /automated/linux/chroot/post_setup_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/chroot/post_setup_run.sh -------------------------------------------------------------------------------- /automated/linux/chroot/pre_setup_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/chroot/pre_setup_run.sh -------------------------------------------------------------------------------- /automated/linux/crypto/crypto.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/crypto/crypto.sh -------------------------------------------------------------------------------- /automated/linux/crypto/crypto.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/crypto/crypto.yaml -------------------------------------------------------------------------------- /automated/linux/crypto/cryptsetup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/crypto/cryptsetup.sh -------------------------------------------------------------------------------- /automated/linux/crypto/cryptsetup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/crypto/cryptsetup.yaml -------------------------------------------------------------------------------- /automated/linux/cyclicdeadline/bin/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/cyclicdeadline/bin/README -------------------------------------------------------------------------------- /automated/linux/cyclicdeadline/bin/arm64/cyclicdeadline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/cyclicdeadline/bin/arm64/cyclicdeadline -------------------------------------------------------------------------------- /automated/linux/cyclicdeadline/bin/armeabi/cyclicdeadline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/cyclicdeadline/bin/armeabi/cyclicdeadline -------------------------------------------------------------------------------- /automated/linux/cyclicdeadline/bin/x86_64/cyclicdeadline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/cyclicdeadline/bin/x86_64/cyclicdeadline -------------------------------------------------------------------------------- /automated/linux/cyclicdeadline/cyclicdeadline.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/cyclicdeadline/cyclicdeadline.sh -------------------------------------------------------------------------------- /automated/linux/cyclicdeadline/cyclicdeadline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/cyclicdeadline/cyclicdeadline.yaml -------------------------------------------------------------------------------- /automated/linux/cyclictest/bin/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/cyclictest/bin/README -------------------------------------------------------------------------------- /automated/linux/cyclictest/bin/arm64/cyclictest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/cyclictest/bin/arm64/cyclictest -------------------------------------------------------------------------------- /automated/linux/cyclictest/bin/armeabi/cyclictest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/cyclictest/bin/armeabi/cyclictest -------------------------------------------------------------------------------- /automated/linux/cyclictest/bin/x86_64/cyclictest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/cyclictest/bin/x86_64/cyclictest -------------------------------------------------------------------------------- /automated/linux/cyclictest/cyclictest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/cyclictest/cyclictest.sh -------------------------------------------------------------------------------- /automated/linux/cyclictest/cyclictest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/cyclictest/cyclictest.yaml -------------------------------------------------------------------------------- /automated/linux/dd-wr-speed/dd-wr-speed.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/dd-wr-speed/dd-wr-speed.sh -------------------------------------------------------------------------------- /automated/linux/dd-wr-speed/dd-wr-speed.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/dd-wr-speed/dd-wr-speed.yaml -------------------------------------------------------------------------------- /automated/linux/deqp-runner/deqp-runner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/deqp-runner/deqp-runner.sh -------------------------------------------------------------------------------- /automated/linux/deqp-runner/deqp-runner.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/deqp-runner/deqp-runner.yaml -------------------------------------------------------------------------------- /automated/linux/device-read-perf/device-read-perf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/device-read-perf/device-read-perf.sh -------------------------------------------------------------------------------- /automated/linux/device-read-perf/device-read-perf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/device-read-perf/device-read-perf.yaml -------------------------------------------------------------------------------- /automated/linux/device-tree/device-tree.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/device-tree/device-tree.sh -------------------------------------------------------------------------------- /automated/linux/device-tree/device-tree.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/device-tree/device-tree.yaml -------------------------------------------------------------------------------- /automated/linux/disk-partitioning/disk-partitioning.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/disk-partitioning/disk-partitioning.sh -------------------------------------------------------------------------------- /automated/linux/disk-partitioning/disk-partitioning.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/disk-partitioning/disk-partitioning.yaml -------------------------------------------------------------------------------- /automated/linux/docker-integration-test/local-daemon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/docker-integration-test/local-daemon.sh -------------------------------------------------------------------------------- /automated/linux/docker-integration-test/local-daemon.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/docker-integration-test/local-daemon.yaml -------------------------------------------------------------------------------- /automated/linux/docker-networking/docker-networking.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/docker-networking/docker-networking.sh -------------------------------------------------------------------------------- /automated/linux/docker-networking/docker-networking.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/docker-networking/docker-networking.yaml -------------------------------------------------------------------------------- /automated/linux/docker-prune/aklite-callback.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/docker-prune/aklite-callback.sh -------------------------------------------------------------------------------- /automated/linux/docker-prune/disable-prune.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/docker-prune/disable-prune.sh -------------------------------------------------------------------------------- /automated/linux/docker-prune/disable-prune.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/docker-prune/disable-prune.yaml -------------------------------------------------------------------------------- /automated/linux/docker-prune/prune-lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/docker-prune/prune-lib.sh -------------------------------------------------------------------------------- /automated/linux/docker-prune/prune.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/docker-prune/prune.sh -------------------------------------------------------------------------------- /automated/linux/docker-prune/prune.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/docker-prune/prune.yaml -------------------------------------------------------------------------------- /automated/linux/docker-prune/z-99-aklite-callback.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/docker-prune/z-99-aklite-callback.toml -------------------------------------------------------------------------------- /automated/linux/docker/docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/docker/docker.sh -------------------------------------------------------------------------------- /automated/linux/docker/docker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/docker/docker.yaml -------------------------------------------------------------------------------- /automated/linux/dockerized-tests/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/dockerized-tests/README.MD -------------------------------------------------------------------------------- /automated/linux/dockerized-tests/local-run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/dockerized-tests/local-run.sh -------------------------------------------------------------------------------- /automated/linux/dockerized-tests/local-run.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/dockerized-tests/local-run.yaml -------------------------------------------------------------------------------- /automated/linux/dockerized-tests/over-ssh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/dockerized-tests/over-ssh.sh -------------------------------------------------------------------------------- /automated/linux/dockerized-tests/over-ssh.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/dockerized-tests/over-ssh.yaml -------------------------------------------------------------------------------- /automated/linux/dsdbench/dsdbench.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/dsdbench/dsdbench.sh -------------------------------------------------------------------------------- /automated/linux/dsdbench/dsdbench.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/dsdbench/dsdbench.yaml -------------------------------------------------------------------------------- /automated/linux/el2go/el2go.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/el2go/el2go.sh -------------------------------------------------------------------------------- /automated/linux/el2go/el2go.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/el2go/el2go.yaml -------------------------------------------------------------------------------- /automated/linux/el2go/z-99-el2go.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/el2go/z-99-el2go.toml -------------------------------------------------------------------------------- /automated/linux/ethernet/ethernet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/ethernet/ethernet.sh -------------------------------------------------------------------------------- /automated/linux/ethernet/ethernet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/ethernet/ethernet.yaml -------------------------------------------------------------------------------- /automated/linux/factory-reset/aklite-callback.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/factory-reset/aklite-callback.sh -------------------------------------------------------------------------------- /automated/linux/factory-reset/prepare-reset.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/factory-reset/prepare-reset.sh -------------------------------------------------------------------------------- /automated/linux/factory-reset/prepare-reset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/factory-reset/prepare-reset.yaml -------------------------------------------------------------------------------- /automated/linux/factory-reset/verify-reboot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/factory-reset/verify-reboot.sh -------------------------------------------------------------------------------- /automated/linux/factory-reset/verify-reboot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/factory-reset/verify-reboot.yaml -------------------------------------------------------------------------------- /automated/linux/factory-reset/z-99-aklite-callback.toml: -------------------------------------------------------------------------------- 1 | ../ota-update/z-99-aklite-callback.toml -------------------------------------------------------------------------------- /automated/linux/factory-reset/z-99-aklite-disable-reboot.toml: -------------------------------------------------------------------------------- 1 | ../ota-update/z-99-aklite-disable-reboot.toml -------------------------------------------------------------------------------- /automated/linux/fdisk/fdisk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/fdisk/fdisk.sh -------------------------------------------------------------------------------- /automated/linux/fdisk/fdisk.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/fdisk/fdisk.yaml -------------------------------------------------------------------------------- /automated/linux/fio-test/fio-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/fio-test/fio-test.sh -------------------------------------------------------------------------------- /automated/linux/fio-test/fio-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/fio-test/fio-test.yaml -------------------------------------------------------------------------------- /automated/linux/fs-resize/fs-resize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/fs-resize/fs-resize.sh -------------------------------------------------------------------------------- /automated/linux/fs-resize/fs-resize.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/fs-resize/fs-resize.yaml -------------------------------------------------------------------------------- /automated/linux/fuego-multinode/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/fuego-multinode/README.MD -------------------------------------------------------------------------------- /automated/linux/fuego-multinode/boards/generic-arm64.board: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/fuego-multinode/boards/generic-arm64.board -------------------------------------------------------------------------------- /automated/linux/fuego-multinode/boards/generic-armhf.board: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/fuego-multinode/boards/generic-armhf.board -------------------------------------------------------------------------------- /automated/linux/fuego-multinode/boards/generic-x86_64.board: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/fuego-multinode/boards/generic-x86_64.board -------------------------------------------------------------------------------- /automated/linux/fuego-multinode/fuego-dut.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/fuego-multinode/fuego-dut.yaml -------------------------------------------------------------------------------- /automated/linux/fuego-multinode/fuego-host.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/fuego-multinode/fuego-host.yaml -------------------------------------------------------------------------------- /automated/linux/fuego-multinode/fuego.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/fuego-multinode/fuego.sh -------------------------------------------------------------------------------- /automated/linux/fuego-multinode/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/fuego-multinode/parser.py -------------------------------------------------------------------------------- /automated/linux/fuego-multinode/setup-openssh-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/fuego-multinode/setup-openssh-server.sh -------------------------------------------------------------------------------- /automated/linux/fwts/fwts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/fwts/fwts.sh -------------------------------------------------------------------------------- /automated/linux/fwts/fwts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/fwts/fwts.yaml -------------------------------------------------------------------------------- /automated/linux/glmark2/glmark2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/glmark2/glmark2.yaml -------------------------------------------------------------------------------- /automated/linux/glmark2/glmark2_lava_parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/glmark2/glmark2_lava_parse.py -------------------------------------------------------------------------------- /automated/linux/gpiod/gpiod.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/gpiod/gpiod.sh -------------------------------------------------------------------------------- /automated/linux/gpiod/gpiod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/gpiod/gpiod.yaml -------------------------------------------------------------------------------- /automated/linux/gpiod/parse-output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/gpiod/parse-output.py -------------------------------------------------------------------------------- /automated/linux/gst-validate/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/gst-validate/README -------------------------------------------------------------------------------- /automated/linux/gst-validate/gst-validate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/gst-validate/gst-validate.yaml -------------------------------------------------------------------------------- /automated/linux/gst-validate/gst_validate_lava_parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/gst-validate/gst_validate_lava_parse.py -------------------------------------------------------------------------------- /automated/linux/hackbench/bin/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/hackbench/bin/README -------------------------------------------------------------------------------- /automated/linux/hackbench/bin/arm64/hackbench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/hackbench/bin/arm64/hackbench -------------------------------------------------------------------------------- /automated/linux/hackbench/bin/armeabi/hackbench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/hackbench/bin/armeabi/hackbench -------------------------------------------------------------------------------- /automated/linux/hackbench/bin/x86_64/hackbench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/hackbench/bin/x86_64/hackbench -------------------------------------------------------------------------------- /automated/linux/hackbench/hackbench.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/hackbench/hackbench.sh -------------------------------------------------------------------------------- /automated/linux/hackbench/hackbench.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/hackbench/hackbench.yaml -------------------------------------------------------------------------------- /automated/linux/hci-smoke/hci-smoke-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/hci-smoke/hci-smoke-test.sh -------------------------------------------------------------------------------- /automated/linux/hci-smoke/hci-smoke.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/hci-smoke/hci-smoke.yaml -------------------------------------------------------------------------------- /automated/linux/httperf-client/httperf-client.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/httperf-client/httperf-client.sh -------------------------------------------------------------------------------- /automated/linux/httperf-client/httperf-client.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/httperf-client/httperf-client.yaml -------------------------------------------------------------------------------- /automated/linux/igt/control_chamelium.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/igt/control_chamelium.sh -------------------------------------------------------------------------------- /automated/linux/igt/igt-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/igt/igt-test.sh -------------------------------------------------------------------------------- /automated/linux/igt/igt-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/igt/igt-test.yaml -------------------------------------------------------------------------------- /automated/linux/igt/kms-testlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/igt/kms-testlist.txt -------------------------------------------------------------------------------- /automated/linux/igt/print-test-result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/igt/print-test-result.py -------------------------------------------------------------------------------- /automated/linux/ima/ima.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/ima/ima.sh -------------------------------------------------------------------------------- /automated/linux/ima/ima.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/ima/ima.yaml -------------------------------------------------------------------------------- /automated/linux/iozone/iozone.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/iozone/iozone.sh -------------------------------------------------------------------------------- /automated/linux/iozone/iozone.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/iozone/iozone.yaml -------------------------------------------------------------------------------- /automated/linux/iperf/iperf-client.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/iperf/iperf-client.yaml -------------------------------------------------------------------------------- /automated/linux/iperf/iperf-server.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/iperf/iperf-server.yaml -------------------------------------------------------------------------------- /automated/linux/iperf/iperf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/iperf/iperf.sh -------------------------------------------------------------------------------- /automated/linux/iperf/lava-multinode-job-example-iperf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/iperf/lava-multinode-job-example-iperf.yaml -------------------------------------------------------------------------------- /automated/linux/isolate-task/isolate-task-verify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/isolate-task/isolate-task-verify.sh -------------------------------------------------------------------------------- /automated/linux/isolate-task/isolate-task.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/isolate-task/isolate-task.yaml -------------------------------------------------------------------------------- /automated/linux/kernel-compilation/kernel-compilation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/kernel-compilation/kernel-compilation.sh -------------------------------------------------------------------------------- /automated/linux/kernel-compilation/kernel-compilation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/kernel-compilation/kernel-compilation.yaml -------------------------------------------------------------------------------- /automated/linux/kselftest/kselftest-skipfile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /automated/linux/kselftest/kselftest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/kselftest/kselftest.sh -------------------------------------------------------------------------------- /automated/linux/kselftest/kselftest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/kselftest/kselftest.yaml -------------------------------------------------------------------------------- /automated/linux/kselftest/parse-output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/kselftest/parse-output.py -------------------------------------------------------------------------------- /automated/linux/kselftest/skipfile-lkft.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/kselftest/skipfile-lkft.yaml -------------------------------------------------------------------------------- /automated/linux/kunit/kunit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/kunit/kunit.sh -------------------------------------------------------------------------------- /automated/linux/kunit/kunit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/kunit/kunit.yaml -------------------------------------------------------------------------------- /automated/linux/kunit/parse-output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/kunit/parse-output.py -------------------------------------------------------------------------------- /automated/linux/kvm-unit-tests/kvm-unit-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/kvm-unit-tests/kvm-unit-tests.sh -------------------------------------------------------------------------------- /automated/linux/kvm-unit-tests/kvm-unit-tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/kvm-unit-tests/kvm-unit-tests.yaml -------------------------------------------------------------------------------- /automated/linux/kvm-unit-tests/parse-output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/kvm-unit-tests/parse-output.py -------------------------------------------------------------------------------- /automated/linux/kvm/cloudinit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/kvm/cloudinit.txt -------------------------------------------------------------------------------- /automated/linux/kvm/start-kvm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/kvm/start-kvm.sh -------------------------------------------------------------------------------- /automated/linux/kvm/start-kvm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/kvm/start-kvm.yaml -------------------------------------------------------------------------------- /automated/linux/kvm/stop-guest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/kvm/stop-guest.yaml -------------------------------------------------------------------------------- /automated/linux/kvm/wait-ip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/kvm/wait-ip.py -------------------------------------------------------------------------------- /automated/linux/kvm/wait-kvm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/kvm/wait-kvm.sh -------------------------------------------------------------------------------- /automated/linux/labgrid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/labgrid/README.md -------------------------------------------------------------------------------- /automated/linux/labgrid/labgrid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/labgrid/labgrid.yaml -------------------------------------------------------------------------------- /automated/linux/labgrid/tests/example/env.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/labgrid/tests/example/env.yaml -------------------------------------------------------------------------------- /automated/linux/labgrid/tests/example/test_shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/labgrid/tests/example/test_shell.py -------------------------------------------------------------------------------- /automated/linux/labgrid/update_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/labgrid/update_env.py -------------------------------------------------------------------------------- /automated/linux/lamp/html/add-record.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/lamp/html/add-record.php -------------------------------------------------------------------------------- /automated/linux/lamp/html/connect-db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/lamp/html/connect-db.php -------------------------------------------------------------------------------- /automated/linux/lamp/html/create-db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/lamp/html/create-db.php -------------------------------------------------------------------------------- /automated/linux/lamp/html/create-table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/lamp/html/create-table.php -------------------------------------------------------------------------------- /automated/linux/lamp/html/delete-record.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/lamp/html/delete-record.php -------------------------------------------------------------------------------- /automated/linux/lamp/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/lamp/html/index.html -------------------------------------------------------------------------------- /automated/linux/lamp/html/info.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /automated/linux/lamp/html/select-record.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/lamp/html/select-record.php -------------------------------------------------------------------------------- /automated/linux/lamp/lamp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/lamp/lamp.sh -------------------------------------------------------------------------------- /automated/linux/lamp/lamp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/lamp/lamp.yaml -------------------------------------------------------------------------------- /automated/linux/lapack/lapack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/lapack/lapack.sh -------------------------------------------------------------------------------- /automated/linux/lapack/lapack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/lapack/lapack.yaml -------------------------------------------------------------------------------- /automated/linux/lemp/centos-nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/lemp/centos-nginx.conf -------------------------------------------------------------------------------- /automated/linux/lemp/debian-nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/lemp/debian-nginx.conf -------------------------------------------------------------------------------- /automated/linux/lemp/html/add-record.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/lemp/html/add-record.php -------------------------------------------------------------------------------- /automated/linux/lemp/html/connect-db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/lemp/html/connect-db.php -------------------------------------------------------------------------------- /automated/linux/lemp/html/create-db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/lemp/html/create-db.php -------------------------------------------------------------------------------- /automated/linux/lemp/html/create-table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/lemp/html/create-table.php -------------------------------------------------------------------------------- /automated/linux/lemp/html/delete-record.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/lemp/html/delete-record.php -------------------------------------------------------------------------------- /automated/linux/lemp/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/lemp/html/index.html -------------------------------------------------------------------------------- /automated/linux/lemp/html/info.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /automated/linux/lemp/html/select-record.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/lemp/html/select-record.php -------------------------------------------------------------------------------- /automated/linux/lemp/lemp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/lemp/lemp.sh -------------------------------------------------------------------------------- /automated/linux/lemp/lemp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/lemp/lemp.yaml -------------------------------------------------------------------------------- /automated/linux/libcurl/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/libcurl/Dockerfile -------------------------------------------------------------------------------- /automated/linux/libcurl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/libcurl/README.md -------------------------------------------------------------------------------- /automated/linux/libcurl/httpd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/libcurl/httpd.conf -------------------------------------------------------------------------------- /automated/linux/libcurl/libcurl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/libcurl/libcurl.sh -------------------------------------------------------------------------------- /automated/linux/libcurl/libcurl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/libcurl/libcurl.yaml -------------------------------------------------------------------------------- /automated/linux/libhugetlbfs/libhugetlbfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/libhugetlbfs/libhugetlbfs.sh -------------------------------------------------------------------------------- /automated/linux/libhugetlbfs/libhugetlbfs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/libhugetlbfs/libhugetlbfs.yaml -------------------------------------------------------------------------------- /automated/linux/linpack/bin/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/linpack/bin/README -------------------------------------------------------------------------------- /automated/linux/linpack/bin/arm64/linpack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/linpack/bin/arm64/linpack -------------------------------------------------------------------------------- /automated/linux/linpack/bin/armeabi/linpack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/linpack/bin/armeabi/linpack -------------------------------------------------------------------------------- /automated/linux/linpack/linpack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/linpack/linpack.sh -------------------------------------------------------------------------------- /automated/linux/linpack/linpack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/linpack/linpack.yaml -------------------------------------------------------------------------------- /automated/linux/lkp/lkp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/lkp/lkp.sh -------------------------------------------------------------------------------- /automated/linux/lkp/lkp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/lkp/lkp.yaml -------------------------------------------------------------------------------- /automated/linux/lmbench/bin/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/lmbench/bin/COPYING -------------------------------------------------------------------------------- /automated/linux/lmbench/bin/COPYING-2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/lmbench/bin/COPYING-2 -------------------------------------------------------------------------------- /automated/linux/lmbench/bin/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/lmbench/bin/README -------------------------------------------------------------------------------- /automated/linux/lmbench/bin/arm64/bw_mem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/lmbench/bin/arm64/bw_mem -------------------------------------------------------------------------------- /automated/linux/lmbench/bin/arm64/lat_mem_rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/lmbench/bin/arm64/lat_mem_rd -------------------------------------------------------------------------------- /automated/linux/lmbench/bin/armeabi/bw_mem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/lmbench/bin/armeabi/bw_mem -------------------------------------------------------------------------------- /automated/linux/lmbench/bin/armeabi/lat_mem_rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/lmbench/bin/armeabi/lat_mem_rd -------------------------------------------------------------------------------- /automated/linux/lmbench/bin/x86/bw_mem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/lmbench/bin/x86/bw_mem -------------------------------------------------------------------------------- /automated/linux/lmbench/bin/x86/lat_mem_rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/lmbench/bin/x86/lat_mem_rd -------------------------------------------------------------------------------- /automated/linux/lmbench/lmbench-memory.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/lmbench/lmbench-memory.sh -------------------------------------------------------------------------------- /automated/linux/lmbench/lmbench-memory.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/lmbench/lmbench-memory.yaml -------------------------------------------------------------------------------- /automated/linux/lmp-device-register/check_toml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/lmp-device-register/check_toml.py -------------------------------------------------------------------------------- /automated/linux/lmp-device-register/lmp-device-register.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/lmp-device-register/lmp-device-register.sh -------------------------------------------------------------------------------- /automated/linux/lshw/lshw.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/lshw/lshw.sh -------------------------------------------------------------------------------- /automated/linux/lshw/lshw.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/lshw/lshw.yaml -------------------------------------------------------------------------------- /automated/linux/ltp-open-posix/ltp-open-posix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/ltp-open-posix/ltp-open-posix.sh -------------------------------------------------------------------------------- /automated/linux/ltp-open-posix/ltp-open-posix.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/ltp-open-posix/ltp-open-posix.yaml -------------------------------------------------------------------------------- /automated/linux/ltp-realtime/ltp-realtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/ltp-realtime/ltp-realtime.py -------------------------------------------------------------------------------- /automated/linux/ltp-realtime/ltp-realtime.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/ltp-realtime/ltp-realtime.sh -------------------------------------------------------------------------------- /automated/linux/ltp-realtime/ltp-realtime.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/ltp-realtime/ltp-realtime.yaml -------------------------------------------------------------------------------- /automated/linux/ltp/ltp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/ltp/ltp.sh -------------------------------------------------------------------------------- /automated/linux/ltp/ltp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/ltp/ltp.yaml -------------------------------------------------------------------------------- /automated/linux/ltp/skipfile-lkft.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/ltp/skipfile-lkft.yaml -------------------------------------------------------------------------------- /automated/linux/ltp/skipfile-lsk-juno: -------------------------------------------------------------------------------- 1 | skipfiles/skipfile-lsk-juno -------------------------------------------------------------------------------- /automated/linux/ltp/skipfile-rpk: -------------------------------------------------------------------------------- 1 | skipfiles/skipfile-rpk -------------------------------------------------------------------------------- /automated/linux/ltp/skipfiles/skipfile-lsk-juno: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/ltp/skipfiles/skipfile-lsk-juno -------------------------------------------------------------------------------- /automated/linux/ltp/skipfiles/skipfile-rpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/ltp/skipfiles/skipfile-rpk -------------------------------------------------------------------------------- /automated/linux/meminfo/meminfo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/meminfo/meminfo.sh -------------------------------------------------------------------------------- /automated/linux/meminfo/meminfo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/meminfo/meminfo.yaml -------------------------------------------------------------------------------- /automated/linux/memtester/memtester.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/memtester/memtester.sh -------------------------------------------------------------------------------- /automated/linux/memtester/memtester.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/memtester/memtester.yaml -------------------------------------------------------------------------------- /automated/linux/ml-bench/tvm-bench.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/ml-bench/tvm-bench.sh -------------------------------------------------------------------------------- /automated/linux/ml-bench/tvm-bench.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/ml-bench/tvm-bench.yaml -------------------------------------------------------------------------------- /automated/linux/mmc/mmc-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/mmc/mmc-test.sh -------------------------------------------------------------------------------- /automated/linux/mmc/mmc-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/mmc/mmc-test.yaml -------------------------------------------------------------------------------- /automated/linux/mmtests/collector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/mmtests/collector.py -------------------------------------------------------------------------------- /automated/linux/mmtests/json-to-lava.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/mmtests/json-to-lava.py -------------------------------------------------------------------------------- /automated/linux/mmtests/mmtests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/mmtests/mmtests.sh -------------------------------------------------------------------------------- /automated/linux/mmtests/mmtests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/mmtests/mmtests.yaml -------------------------------------------------------------------------------- /automated/linux/modules/modules.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/modules/modules.sh -------------------------------------------------------------------------------- /automated/linux/modules/modules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/modules/modules.yaml -------------------------------------------------------------------------------- /automated/linux/network-basic/network-basic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/network-basic/network-basic.sh -------------------------------------------------------------------------------- /automated/linux/network-basic/network-basic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/network-basic/network-basic.yaml -------------------------------------------------------------------------------- /automated/linux/network-manager/network-manager.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/network-manager/network-manager.sh -------------------------------------------------------------------------------- /automated/linux/network-manager/network-manager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/network-manager/network-manager.yaml -------------------------------------------------------------------------------- /automated/linux/nginx-apache-bench/apache-bench.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/nginx-apache-bench/apache-bench.sh -------------------------------------------------------------------------------- /automated/linux/nginx-apache-bench/apache-bench.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/nginx-apache-bench/apache-bench.yaml -------------------------------------------------------------------------------- /automated/linux/nginx-server/linux-ip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/nginx-server/linux-ip.sh -------------------------------------------------------------------------------- /automated/linux/nginx-server/nginx-linux.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/nginx-server/nginx-linux.yaml -------------------------------------------------------------------------------- /automated/linux/nginx-server/nginx-odp-dpdk-git.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/nginx-server/nginx-odp-dpdk-git.yaml -------------------------------------------------------------------------------- /automated/linux/nginx-server/nginx-odp-dpdk.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/nginx-server/nginx-odp-dpdk.yaml -------------------------------------------------------------------------------- /automated/linux/nginx-server/nginx-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/nginx-server/nginx-server.sh -------------------------------------------------------------------------------- /automated/linux/nginx-server/odp-dpdk-git.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/nginx-server/odp-dpdk-git.sh -------------------------------------------------------------------------------- /automated/linux/nginx-server/odp-dpdk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/nginx-server/odp-dpdk.sh -------------------------------------------------------------------------------- /automated/linux/offline-update/offline-run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/offline-update/offline-run.sh -------------------------------------------------------------------------------- /automated/linux/offline-update/offline-run.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/offline-update/offline-run.yaml -------------------------------------------------------------------------------- /automated/linux/offline-update/offline-update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/offline-update/offline-update.sh -------------------------------------------------------------------------------- /automated/linux/offline-update/offline-update.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/offline-update/offline-update.yaml -------------------------------------------------------------------------------- /automated/linux/offline-update/z-99-aklite-callback.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/offline-update/z-99-aklite-callback.toml -------------------------------------------------------------------------------- /automated/linux/openjdk/openjdk-smoke.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/openjdk/openjdk-smoke.sh -------------------------------------------------------------------------------- /automated/linux/openjdk/openjdk-smoke.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/openjdk/openjdk-smoke.yaml -------------------------------------------------------------------------------- /automated/linux/openssh/openssh-debian.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/openssh/openssh-debian.sh -------------------------------------------------------------------------------- /automated/linux/openssh/openssh-debian.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/openssh/openssh-debian.yaml -------------------------------------------------------------------------------- /automated/linux/openssl/openssl-speed.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/openssl/openssl-speed.sh -------------------------------------------------------------------------------- /automated/linux/openssl/openssl-speed.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/openssl/openssl-speed.yaml -------------------------------------------------------------------------------- /automated/linux/optee/optee-xtest-qemu.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/optee/optee-xtest-qemu.yaml -------------------------------------------------------------------------------- /automated/linux/optee/optee-xtest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/optee/optee-xtest.sh -------------------------------------------------------------------------------- /automated/linux/optee/optee-xtest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/optee/optee-xtest.yaml -------------------------------------------------------------------------------- /automated/linux/ostree/ostree.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/ostree/ostree.sh -------------------------------------------------------------------------------- /automated/linux/ostree/ostree.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/ostree/ostree.yaml -------------------------------------------------------------------------------- /automated/linux/ota-apps/aklite-callback.sh: -------------------------------------------------------------------------------- 1 | ../ota-update/aklite-callback.sh -------------------------------------------------------------------------------- /automated/linux/ota-apps/ota-apps.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/ota-apps/ota-apps.yaml -------------------------------------------------------------------------------- /automated/linux/ota-apps/switch-apps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/ota-apps/switch-apps.sh -------------------------------------------------------------------------------- /automated/linux/ota-apps/switch-apps.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/ota-apps/switch-apps.yaml -------------------------------------------------------------------------------- /automated/linux/ota-apps/update-apps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/ota-apps/update-apps.sh -------------------------------------------------------------------------------- /automated/linux/ota-apps/z-99-aklite-callback.toml: -------------------------------------------------------------------------------- 1 | ../ota-update/z-99-aklite-callback.toml -------------------------------------------------------------------------------- /automated/linux/ota-apps/z-99-aklite-disable-reboot.toml: -------------------------------------------------------------------------------- 1 | ../ota-update/z-99-aklite-disable-reboot.toml -------------------------------------------------------------------------------- /automated/linux/ota-rollback/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/ota-rollback/README.md -------------------------------------------------------------------------------- /automated/linux/ota-rollback/aklite-callback.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/ota-rollback/aklite-callback.sh -------------------------------------------------------------------------------- /automated/linux/ota-rollback/download-update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/ota-rollback/download-update.sh -------------------------------------------------------------------------------- /automated/linux/ota-rollback/download-update.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/ota-rollback/download-update.yaml -------------------------------------------------------------------------------- /automated/linux/ota-rollback/verify-reboot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/ota-rollback/verify-reboot.sh -------------------------------------------------------------------------------- /automated/linux/ota-rollback/verify-reboot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/ota-rollback/verify-reboot.yaml -------------------------------------------------------------------------------- /automated/linux/ota-rollback/verify-rollback.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/ota-rollback/verify-rollback.sh -------------------------------------------------------------------------------- /automated/linux/ota-rollback/verify-rollback.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/ota-rollback/verify-rollback.yaml -------------------------------------------------------------------------------- /automated/linux/ota-rollback/z-99-aklite-callback.toml: -------------------------------------------------------------------------------- 1 | ../ota-update/z-99-aklite-callback.toml -------------------------------------------------------------------------------- /automated/linux/ota-rollback/z-99-aklite-disable-reboot.toml: -------------------------------------------------------------------------------- 1 | ../ota-update/z-99-aklite-disable-reboot.toml -------------------------------------------------------------------------------- /automated/linux/ota-rollback/z-99-ostree.toml: -------------------------------------------------------------------------------- 1 | ../ota-update/z-99-ostree.toml -------------------------------------------------------------------------------- /automated/linux/ota-update/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/ota-update/README.md -------------------------------------------------------------------------------- /automated/linux/ota-update/aklite-callback.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/ota-update/aklite-callback.sh -------------------------------------------------------------------------------- /automated/linux/ota-update/download-update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/ota-update/download-update.sh -------------------------------------------------------------------------------- /automated/linux/ota-update/download-update.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/ota-update/download-update.yaml -------------------------------------------------------------------------------- /automated/linux/ota-update/static-delta.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/ota-update/static-delta.sh -------------------------------------------------------------------------------- /automated/linux/ota-update/static-delta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/ota-update/static-delta.yaml -------------------------------------------------------------------------------- /automated/linux/ota-update/verify-reboot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/ota-update/verify-reboot.sh -------------------------------------------------------------------------------- /automated/linux/ota-update/verify-reboot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/ota-update/verify-reboot.yaml -------------------------------------------------------------------------------- /automated/linux/ota-update/verify-update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/ota-update/verify-update.sh -------------------------------------------------------------------------------- /automated/linux/ota-update/verify-update.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/ota-update/verify-update.yaml -------------------------------------------------------------------------------- /automated/linux/ota-update/z-99-aklite-callback.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/ota-update/z-99-aklite-callback.toml -------------------------------------------------------------------------------- /automated/linux/ota-update/z-99-aklite-disable-reboot.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/ota-update/z-99-aklite-disable-reboot.toml -------------------------------------------------------------------------------- /automated/linux/ota-update/z-99-ostree.toml: -------------------------------------------------------------------------------- 1 | [pacman] 2 | type = "ostree" 3 | -------------------------------------------------------------------------------- /automated/linux/overlayfs/overlayfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/overlayfs/overlayfs.sh -------------------------------------------------------------------------------- /automated/linux/overlayfs/overlayfs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/overlayfs/overlayfs.yaml -------------------------------------------------------------------------------- /automated/linux/packetdrill/packetdrill.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/packetdrill/packetdrill.sh -------------------------------------------------------------------------------- /automated/linux/packetdrill/packetdrill.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/packetdrill/packetdrill.yaml -------------------------------------------------------------------------------- /automated/linux/perf/parse-output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/perf/parse-output.py -------------------------------------------------------------------------------- /automated/linux/perf/perf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/perf/perf.sh -------------------------------------------------------------------------------- /automated/linux/perf/perf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/perf/perf.yaml -------------------------------------------------------------------------------- /automated/linux/peripherals/usb-gadget-framework.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/peripherals/usb-gadget-framework.sh -------------------------------------------------------------------------------- /automated/linux/peripherals/usb-gadget-framework.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/peripherals/usb-gadget-framework.yaml -------------------------------------------------------------------------------- /automated/linux/pi-stress/bin/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/pi-stress/bin/README -------------------------------------------------------------------------------- /automated/linux/pi-stress/bin/arm64/pi_stress: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/pi-stress/bin/arm64/pi_stress -------------------------------------------------------------------------------- /automated/linux/pi-stress/bin/armeabi/pi_stress: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/pi-stress/bin/armeabi/pi_stress -------------------------------------------------------------------------------- /automated/linux/pi-stress/bin/x86_64/pi_stress: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/pi-stress/bin/x86_64/pi_stress -------------------------------------------------------------------------------- /automated/linux/pi-stress/pi-stress.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/pi-stress/pi-stress.sh -------------------------------------------------------------------------------- /automated/linux/pi-stress/pi-stress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/pi-stress/pi-stress.yaml -------------------------------------------------------------------------------- /automated/linux/piglit/piglit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/piglit/piglit.yaml -------------------------------------------------------------------------------- /automated/linux/piglit/piglit_lava_parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/piglit/piglit_lava_parse.py -------------------------------------------------------------------------------- /automated/linux/pkcs11/pkcs11.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/pkcs11/pkcs11.sh -------------------------------------------------------------------------------- /automated/linux/pkcs11/pkcs11.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/pkcs11/pkcs11.yaml -------------------------------------------------------------------------------- /automated/linux/pm-qa/pm-qa.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/pm-qa/pm-qa.sh -------------------------------------------------------------------------------- /automated/linux/pm-qa/pm-qa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/pm-qa/pm-qa.yaml -------------------------------------------------------------------------------- /automated/linux/pmqtest/bin/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/pmqtest/bin/README -------------------------------------------------------------------------------- /automated/linux/pmqtest/bin/arm64/pmqtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/pmqtest/bin/arm64/pmqtest -------------------------------------------------------------------------------- /automated/linux/pmqtest/bin/armeabi/pmqtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/pmqtest/bin/armeabi/pmqtest -------------------------------------------------------------------------------- /automated/linux/pmqtest/bin/x86_64/pmqtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/pmqtest/bin/x86_64/pmqtest -------------------------------------------------------------------------------- /automated/linux/pmqtest/pmqtest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/pmqtest/pmqtest.sh -------------------------------------------------------------------------------- /automated/linux/pmqtest/pmqtest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/pmqtest/pmqtest.yaml -------------------------------------------------------------------------------- /automated/linux/pointer-tagging/pointer-tagging-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/pointer-tagging/pointer-tagging-tests.sh -------------------------------------------------------------------------------- /automated/linux/pointer-tagging/pointer-tagging-tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/pointer-tagging/pointer-tagging-tests.yaml -------------------------------------------------------------------------------- /automated/linux/pritee_test_utility/pritee_test_utility.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/pritee_test_utility/pritee_test_utility.sh -------------------------------------------------------------------------------- /automated/linux/ptest/ptest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/ptest/ptest.py -------------------------------------------------------------------------------- /automated/linux/ptest/ptest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/ptest/ptest.yaml -------------------------------------------------------------------------------- /automated/linux/ptsematest/bin/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/ptsematest/bin/README -------------------------------------------------------------------------------- /automated/linux/ptsematest/bin/arm64/ptsematest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/ptsematest/bin/arm64/ptsematest -------------------------------------------------------------------------------- /automated/linux/ptsematest/bin/armeabi/ptsematest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/ptsematest/bin/armeabi/ptsematest -------------------------------------------------------------------------------- /automated/linux/ptsematest/bin/x86_64/ptsematest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/ptsematest/bin/x86_64/ptsematest -------------------------------------------------------------------------------- /automated/linux/ptsematest/ptsematest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/ptsematest/ptsematest.sh -------------------------------------------------------------------------------- /automated/linux/ptsematest/ptsematest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/ptsematest/ptsematest.yaml -------------------------------------------------------------------------------- /automated/linux/rcutorture/rcutorture.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/rcutorture/rcutorture.sh -------------------------------------------------------------------------------- /automated/linux/rcutorture/rcutorture.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/rcutorture/rcutorture.yaml -------------------------------------------------------------------------------- /automated/linux/rt-migrate-test/bin/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/rt-migrate-test/bin/README -------------------------------------------------------------------------------- /automated/linux/rt-migrate-test/bin/arm64/rt-migrate-test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/rt-migrate-test/bin/arm64/rt-migrate-test -------------------------------------------------------------------------------- /automated/linux/rt-migrate-test/bin/armeabi/rt-migrate-test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/rt-migrate-test/bin/armeabi/rt-migrate-test -------------------------------------------------------------------------------- /automated/linux/rt-migrate-test/bin/x86_64/rt-migrate-test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/rt-migrate-test/bin/x86_64/rt-migrate-test -------------------------------------------------------------------------------- /automated/linux/rt-migrate-test/rt-migrate-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/rt-migrate-test/rt-migrate-test.sh -------------------------------------------------------------------------------- /automated/linux/rt-migrate-test/rt-migrate-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/rt-migrate-test/rt-migrate-test.yaml -------------------------------------------------------------------------------- /automated/linux/rteval/rteval.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/rteval/rteval.sh -------------------------------------------------------------------------------- /automated/linux/rteval/rteval.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/rteval/rteval.yaml -------------------------------------------------------------------------------- /automated/linux/rtla/parse_rtla.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/rtla/parse_rtla.py -------------------------------------------------------------------------------- /automated/linux/rtla/rtla-osnoise.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/rtla/rtla-osnoise.sh -------------------------------------------------------------------------------- /automated/linux/rtla/rtla-osnoise.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/rtla/rtla-osnoise.yaml -------------------------------------------------------------------------------- /automated/linux/rtla/rtla-timerlat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/rtla/rtla-timerlat.sh -------------------------------------------------------------------------------- /automated/linux/rtla/rtla-timerlat.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/rtla/rtla-timerlat.yaml -------------------------------------------------------------------------------- /automated/linux/secure-boot/secure-boot-enabled.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/secure-boot/secure-boot-enabled.sh -------------------------------------------------------------------------------- /automated/linux/secure-boot/secure-boot-enabled.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/secure-boot/secure-boot-enabled.yaml -------------------------------------------------------------------------------- /automated/linux/signaltest/bin/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/signaltest/bin/README -------------------------------------------------------------------------------- /automated/linux/signaltest/bin/arm64/signaltest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/signaltest/bin/arm64/signaltest -------------------------------------------------------------------------------- /automated/linux/signaltest/bin/armeabi/signaltest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/signaltest/bin/armeabi/signaltest -------------------------------------------------------------------------------- /automated/linux/signaltest/bin/x86_64/signaltest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/signaltest/bin/x86_64/signaltest -------------------------------------------------------------------------------- /automated/linux/signaltest/signaltest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/signaltest/signaltest.sh -------------------------------------------------------------------------------- /automated/linux/signaltest/signaltest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/signaltest/signaltest.yaml -------------------------------------------------------------------------------- /automated/linux/sigwaittest/bin/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/sigwaittest/bin/README -------------------------------------------------------------------------------- /automated/linux/sigwaittest/bin/arm64/sigwaittest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/sigwaittest/bin/arm64/sigwaittest -------------------------------------------------------------------------------- /automated/linux/sigwaittest/bin/armeabi/sigwaittest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/sigwaittest/bin/armeabi/sigwaittest -------------------------------------------------------------------------------- /automated/linux/sigwaittest/bin/x86_64/sigwaittest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/sigwaittest/bin/x86_64/sigwaittest -------------------------------------------------------------------------------- /automated/linux/sigwaittest/sigwaittest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/sigwaittest/sigwaittest.sh -------------------------------------------------------------------------------- /automated/linux/sigwaittest/sigwaittest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/sigwaittest/sigwaittest.yaml -------------------------------------------------------------------------------- /automated/linux/smoke/smoke.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/smoke/smoke.sh -------------------------------------------------------------------------------- /automated/linux/smoke/smoke.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/smoke/smoke.yaml -------------------------------------------------------------------------------- /automated/linux/spectre-meltdown-checker-test/bin/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/spectre-meltdown-checker-test/bin/LICENSE -------------------------------------------------------------------------------- /automated/linux/ssuite/run-bench.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/ssuite/run-bench.sh -------------------------------------------------------------------------------- /automated/linux/ssuite/ssuite-bench.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/ssuite/ssuite-bench.yaml -------------------------------------------------------------------------------- /automated/linux/stream/bin/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/stream/bin/LICENSE.txt -------------------------------------------------------------------------------- /automated/linux/stream/bin/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/stream/bin/README -------------------------------------------------------------------------------- /automated/linux/stream/bin/arm64/stream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/stream/bin/arm64/stream -------------------------------------------------------------------------------- /automated/linux/stream/bin/armeabi/stream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/stream/bin/armeabi/stream -------------------------------------------------------------------------------- /automated/linux/stream/stream-uniprocessor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/stream/stream-uniprocessor.sh -------------------------------------------------------------------------------- /automated/linux/stream/stream-uniprocessor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/stream/stream-uniprocessor.yaml -------------------------------------------------------------------------------- /automated/linux/svsematest/bin/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/svsematest/bin/README -------------------------------------------------------------------------------- /automated/linux/svsematest/bin/arm64/svsematest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/svsematest/bin/arm64/svsematest -------------------------------------------------------------------------------- /automated/linux/svsematest/bin/armeabi/svsematest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/svsematest/bin/armeabi/svsematest -------------------------------------------------------------------------------- /automated/linux/svsematest/bin/x86_64/svsematest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/svsematest/bin/x86_64/svsematest -------------------------------------------------------------------------------- /automated/linux/svsematest/svsematest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/svsematest/svsematest.sh -------------------------------------------------------------------------------- /automated/linux/svsematest/svsematest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/svsematest/svsematest.yaml -------------------------------------------------------------------------------- /automated/linux/sysbench/sysbench.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/sysbench/sysbench.sh -------------------------------------------------------------------------------- /automated/linux/sysbench/sysbench.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/sysbench/sysbench.yaml -------------------------------------------------------------------------------- /automated/linux/sysfs-bus-iio-smoke/sysfs-bus-iio-smoke.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/sysfs-bus-iio-smoke/sysfs-bus-iio-smoke.sh -------------------------------------------------------------------------------- /automated/linux/systemd-analyze/systemd-analyze.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/systemd-analyze/systemd-analyze.sh -------------------------------------------------------------------------------- /automated/linux/systemd-analyze/systemd-analyze.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/systemd-analyze/systemd-analyze.yaml -------------------------------------------------------------------------------- /automated/linux/tcpreplay/pcap/generate_pcap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/tcpreplay/pcap/generate_pcap.py -------------------------------------------------------------------------------- /automated/linux/tcpreplay/tcpreplay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/tcpreplay/tcpreplay.py -------------------------------------------------------------------------------- /automated/linux/tcpreplay/tcpreplay.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/tcpreplay/tcpreplay.yaml -------------------------------------------------------------------------------- /automated/linux/tensorflow/imagenet-resnet50.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/tensorflow/imagenet-resnet50.sh -------------------------------------------------------------------------------- /automated/linux/tensorflow/imagenet-resnet50.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/tensorflow/imagenet-resnet50.yaml -------------------------------------------------------------------------------- /automated/linux/tensorflow/imagenet-ssd-resnet34.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/tensorflow/imagenet-ssd-resnet34.sh -------------------------------------------------------------------------------- /automated/linux/tensorflow/imagenet-ssd-resnet34.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/tensorflow/imagenet-ssd-resnet34.yaml -------------------------------------------------------------------------------- /automated/linux/tensorflow/ssd-mobilenet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/tensorflow/ssd-mobilenet.sh -------------------------------------------------------------------------------- /automated/linux/tensorflow/ssd-mobilenet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/tensorflow/ssd-mobilenet.yaml -------------------------------------------------------------------------------- /automated/linux/tensorflow/tensorflow-utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/tensorflow/tensorflow-utils.sh -------------------------------------------------------------------------------- /automated/linux/timesyncd/timesyncd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/timesyncd/timesyncd.yaml -------------------------------------------------------------------------------- /automated/linux/timesyncd/timesynctest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/timesyncd/timesynctest.py -------------------------------------------------------------------------------- /automated/linux/timesyncd/timesynctest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/timesyncd/timesynctest.sh -------------------------------------------------------------------------------- /automated/linux/toolchain-smoke/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/toolchain-smoke/hello.c -------------------------------------------------------------------------------- /automated/linux/toolchain-smoke/toolchain-smoke.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/toolchain-smoke/toolchain-smoke.sh -------------------------------------------------------------------------------- /automated/linux/toolchain-smoke/toolchain-smoke.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/toolchain-smoke/toolchain-smoke.yaml -------------------------------------------------------------------------------- /automated/linux/torizon/boot-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/torizon/boot-tests.sh -------------------------------------------------------------------------------- /automated/linux/torizon/boot-tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/torizon/boot-tests.yaml -------------------------------------------------------------------------------- /automated/linux/torizon/bpf-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/torizon/bpf-tests.sh -------------------------------------------------------------------------------- /automated/linux/torizon/bpf-tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/torizon/bpf-tests.yaml -------------------------------------------------------------------------------- /automated/linux/torizon/integration-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/torizon/integration-tests.sh -------------------------------------------------------------------------------- /automated/linux/torizon/integration-tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/torizon/integration-tests.yaml -------------------------------------------------------------------------------- /automated/linux/torizon/lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/torizon/lib.sh -------------------------------------------------------------------------------- /automated/linux/torizon/ostree-rollback-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/torizon/ostree-rollback-tests.sh -------------------------------------------------------------------------------- /automated/linux/torizon/ostree-rollback-tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/torizon/ostree-rollback-tests.yaml -------------------------------------------------------------------------------- /automated/linux/torizon/ostree-upgrade-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/torizon/ostree-upgrade-tests.sh -------------------------------------------------------------------------------- /automated/linux/torizon/ostree-upgrade-tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/torizon/ostree-upgrade-tests.yaml -------------------------------------------------------------------------------- /automated/linux/tvm/tvm-unit-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/tvm/tvm-unit-tests.sh -------------------------------------------------------------------------------- /automated/linux/tvm/tvm-unit-tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/tvm/tvm-unit-tests.yaml -------------------------------------------------------------------------------- /automated/linux/uart-loopback/uart-loopback.arm64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/uart-loopback/uart-loopback.arm64 -------------------------------------------------------------------------------- /automated/linux/uart-loopback/uart-loopback.armeabi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/uart-loopback/uart-loopback.armeabi -------------------------------------------------------------------------------- /automated/linux/uart-loopback/uart-loopback.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/uart-loopback/uart-loopback.sh -------------------------------------------------------------------------------- /automated/linux/uart-loopback/uart-loopback.x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/uart-loopback/uart-loopback.x86_64 -------------------------------------------------------------------------------- /automated/linux/uart-loopback/uart-loopback.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/uart-loopback/uart-loopback.yaml -------------------------------------------------------------------------------- /automated/linux/ui-browser-test/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/ui-browser-test/README.rst -------------------------------------------------------------------------------- /automated/linux/ui-browser-test/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/ui-browser-test/install.sh -------------------------------------------------------------------------------- /automated/linux/ui-browser-test/robot-results-parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/ui-browser-test/robot-results-parser.py -------------------------------------------------------------------------------- /automated/linux/ui-browser-test/run-robot-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/ui-browser-test/run-robot-tests.sh -------------------------------------------------------------------------------- /automated/linux/ui-browser-test/ui-browser-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/ui-browser-test/ui-browser-test.sh -------------------------------------------------------------------------------- /automated/linux/ui-browser-test/ui-browser-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/ui-browser-test/ui-browser-test.yaml -------------------------------------------------------------------------------- /automated/linux/unixbench/unixbench.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/unixbench/unixbench.sh -------------------------------------------------------------------------------- /automated/linux/unixbench/unixbench.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/unixbench/unixbench.yaml -------------------------------------------------------------------------------- /automated/linux/usb-smoke/usb-smoke-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/usb-smoke/usb-smoke-test.sh -------------------------------------------------------------------------------- /automated/linux/usb-smoke/usb-smoke-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/usb-smoke/usb-smoke-test.yaml -------------------------------------------------------------------------------- /automated/linux/v4l2/v4l2-compliance.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/v4l2/v4l2-compliance.sh -------------------------------------------------------------------------------- /automated/linux/v4l2/v4l2-compliance.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/v4l2/v4l2-compliance.yaml -------------------------------------------------------------------------------- /automated/linux/vdsotest/vdsotest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/vdsotest/vdsotest.sh -------------------------------------------------------------------------------- /automated/linux/vdsotest/vdsotest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/vdsotest/vdsotest.yaml -------------------------------------------------------------------------------- /automated/linux/video/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/video/Dockerfile -------------------------------------------------------------------------------- /automated/linux/video/compare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/video/compare.py -------------------------------------------------------------------------------- /automated/linux/video/requirements.txt: -------------------------------------------------------------------------------- 1 | opencv-python 2 | requests 3 | scikit-image 4 | -------------------------------------------------------------------------------- /automated/linux/video/video.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/video/video.sh -------------------------------------------------------------------------------- /automated/linux/video/video.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/video/video.yaml -------------------------------------------------------------------------------- /automated/linux/widevine/widevine_unittest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/widevine/widevine_unittest.sh -------------------------------------------------------------------------------- /automated/linux/widevine/widevine_unittest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/widevine/widevine_unittest.yaml -------------------------------------------------------------------------------- /automated/linux/wireguard-fioconfig/wg-pk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/wireguard-fioconfig/wg-pk.sh -------------------------------------------------------------------------------- /automated/linux/wireguard-fioconfig/wg-pk.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/wireguard-fioconfig/wg-pk.yaml -------------------------------------------------------------------------------- /automated/linux/wlan-download/wlan-download-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/wlan-download/wlan-download-test.sh -------------------------------------------------------------------------------- /automated/linux/wlan-download/wlan-download.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/wlan-download/wlan-download.yaml -------------------------------------------------------------------------------- /automated/linux/wlan-smoke/wlan-smoke-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/wlan-smoke/wlan-smoke-test.sh -------------------------------------------------------------------------------- /automated/linux/wlan-smoke/wlan-smoke.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/wlan-smoke/wlan-smoke.yaml -------------------------------------------------------------------------------- /automated/linux/workload-automation/workload-automation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/workload-automation/workload-automation.sh -------------------------------------------------------------------------------- /automated/linux/workload-automation3/workload-automation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/workload-automation3/workload-automation.sh -------------------------------------------------------------------------------- /automated/linux/xenomai4/xenomai4-smoke.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/xenomai4/xenomai4-smoke.sh -------------------------------------------------------------------------------- /automated/linux/xenomai4/xenomai4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/xenomai4/xenomai4.yaml -------------------------------------------------------------------------------- /automated/linux/xfstests/xfstests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/xfstests/xfstests.sh -------------------------------------------------------------------------------- /automated/linux/xfstests/xfstests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/linux/xfstests/xfstests.yaml -------------------------------------------------------------------------------- /automated/utils/httperf/httperf-runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/utils/httperf/httperf-runner.py -------------------------------------------------------------------------------- /automated/utils/parse-robot-framework.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/utils/parse-robot-framework.py -------------------------------------------------------------------------------- /automated/utils/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/utils/requirements.txt -------------------------------------------------------------------------------- /automated/utils/send-to-lava.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/utils/send-to-lava.sh -------------------------------------------------------------------------------- /automated/utils/test-runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/utils/test-runner.py -------------------------------------------------------------------------------- /automated/utils/upload-to-artifactorial.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/utils/upload-to-artifactorial.sh -------------------------------------------------------------------------------- /automated/utils/upload-to-squad.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/utils/upload-to-squad.sh -------------------------------------------------------------------------------- /automated/utils/vland/get_vland_interface.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/utils/vland/get_vland_interface.sh -------------------------------------------------------------------------------- /automated/utils/vland/get_vland_mac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/utils/vland/get_vland_mac.sh -------------------------------------------------------------------------------- /automated/utils/vland/get_vland_pci_dev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/automated/utils/vland/get_vland_pci_dev.sh -------------------------------------------------------------------------------- /docs/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/docs/extra.css -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/tags.md: -------------------------------------------------------------------------------- 1 | # Tags 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/test-runner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/docs/test-runner.md -------------------------------------------------------------------------------- /docs/test-writing-guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/docs/test-writing-guidelines.md -------------------------------------------------------------------------------- /manual/dragon410c/dragon410c-user-led.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/dragon410c/dragon410c-user-led.yaml -------------------------------------------------------------------------------- /manual/enterprise/bigdata-hadoop-terasort.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/enterprise/bigdata-hadoop-terasort.yaml -------------------------------------------------------------------------------- /manual/enterprise/bigdata-hive.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/enterprise/bigdata-hive.yaml -------------------------------------------------------------------------------- /manual/enterprise/bigdata-spark-sparkpi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/enterprise/bigdata-spark-sparkpi.yaml -------------------------------------------------------------------------------- /manual/enterprise/openstack-ceph.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/enterprise/openstack-ceph.yaml -------------------------------------------------------------------------------- /manual/foundries/aklite-full-disk.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/foundries/aklite-full-disk.yaml -------------------------------------------------------------------------------- /manual/foundries/device-config-overwrite.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/foundries/device-config-overwrite.yaml -------------------------------------------------------------------------------- /manual/foundries/fioctl-tags-apps.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/foundries/fioctl-tags-apps.yaml -------------------------------------------------------------------------------- /manual/foundries/fleetwide-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/foundries/fleetwide-config.yaml -------------------------------------------------------------------------------- /manual/foundries/group-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/foundries/group-config.yaml -------------------------------------------------------------------------------- /manual/foundries/lmp-device-re-register.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/foundries/lmp-device-re-register.yaml -------------------------------------------------------------------------------- /manual/foundries/lmp-device-register-api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/foundries/lmp-device-register-api.yaml -------------------------------------------------------------------------------- /manual/foundries/lmp-device-register-apps.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/foundries/lmp-device-register-apps.yaml -------------------------------------------------------------------------------- /manual/foundries/lmp-device-register-delete.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/foundries/lmp-device-register-delete.yaml -------------------------------------------------------------------------------- /manual/foundries/lmp-device-register-devel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/foundries/lmp-device-register-devel.yaml -------------------------------------------------------------------------------- /manual/foundries/lmp-device-register-disable-aktualizr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/foundries/lmp-device-register-disable-aktualizr.yaml -------------------------------------------------------------------------------- /manual/foundries/lmp-device-register-drive.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/foundries/lmp-device-register-drive.yaml -------------------------------------------------------------------------------- /manual/foundries/lmp-device-register-hwid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/foundries/lmp-device-register-hwid.yaml -------------------------------------------------------------------------------- /manual/foundries/lmp-device-register-invalid-api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/foundries/lmp-device-register-invalid-api.yaml -------------------------------------------------------------------------------- /manual/foundries/lmp-device-register-invalid-app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/foundries/lmp-device-register-invalid-app.yaml -------------------------------------------------------------------------------- /manual/foundries/lmp-device-register-token-header.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/foundries/lmp-device-register-token-header.yaml -------------------------------------------------------------------------------- /manual/foundries/lmp-device-register-uuid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/foundries/lmp-device-register-uuid.yaml -------------------------------------------------------------------------------- /manual/foundries/lmp-device-register.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/foundries/lmp-device-register.yaml -------------------------------------------------------------------------------- /manual/generic/96boards/hikey-bluetooth-status-led.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/96boards/hikey-bluetooth-status-led.yaml -------------------------------------------------------------------------------- /manual/generic/96boards/hikey-wifi-status-led.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/96boards/hikey-wifi-status-led.yaml -------------------------------------------------------------------------------- /manual/generic/96boards/status-led-bluetooth.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/96boards/status-led-bluetooth.yaml -------------------------------------------------------------------------------- /manual/generic/96boards/status-led-wifi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/96boards/status-led-wifi.yaml -------------------------------------------------------------------------------- /manual/generic/android/adb-over-ethernet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/android/adb-over-ethernet.yaml -------------------------------------------------------------------------------- /manual/generic/android/adb-over-usb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/android/adb-over-usb.yaml -------------------------------------------------------------------------------- /manual/generic/android/android-hardware-usb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/android/android-hardware-usb.yaml -------------------------------------------------------------------------------- /manual/generic/android/android-input-method-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/android/android-input-method-service.yaml -------------------------------------------------------------------------------- /manual/generic/android/android-ui-auto-mount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/android/android-ui-auto-mount.yaml -------------------------------------------------------------------------------- /manual/generic/android/android-version.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/android/android-version.yaml -------------------------------------------------------------------------------- /manual/generic/android/angrybirds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/android/angrybirds.yaml -------------------------------------------------------------------------------- /manual/generic/android/arm-browser-benchmark.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/android/arm-browser-benchmark.yaml -------------------------------------------------------------------------------- /manual/generic/android/audio-jack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/android/audio-jack.yaml -------------------------------------------------------------------------------- /manual/generic/android/bluetooth-audio.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/android/bluetooth-audio.yaml -------------------------------------------------------------------------------- /manual/generic/android/bluetooth-ftp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/android/bluetooth-ftp.yaml -------------------------------------------------------------------------------- /manual/generic/android/bluetooth-pair.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/android/bluetooth-pair.yaml -------------------------------------------------------------------------------- /manual/generic/android/bluetooth-scan.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/android/bluetooth-scan.yaml -------------------------------------------------------------------------------- /manual/generic/android/bluetooth-tethering.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/android/bluetooth-tethering.yaml -------------------------------------------------------------------------------- /manual/generic/android/browser-app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/android/browser-app.yaml -------------------------------------------------------------------------------- /manual/generic/android/device-tree.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/android/device-tree.yaml -------------------------------------------------------------------------------- /manual/generic/android/display-blanking.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/android/display-blanking.yaml -------------------------------------------------------------------------------- /manual/generic/android/download-install-apk.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/android/download-install-apk.yaml -------------------------------------------------------------------------------- /manual/generic/android/ds-5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/android/ds-5.yaml -------------------------------------------------------------------------------- /manual/generic/android/ethernet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/android/ethernet.yaml -------------------------------------------------------------------------------- /manual/generic/android/gallery-app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/android/gallery-app.yaml -------------------------------------------------------------------------------- /manual/generic/android/google-hangouts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/android/google-hangouts.yaml -------------------------------------------------------------------------------- /manual/generic/android/hardware-graphics-acceleration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/android/hardware-graphics-acceleration.yaml -------------------------------------------------------------------------------- /manual/generic/android/hardware-video.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/android/hardware-video.yaml -------------------------------------------------------------------------------- /manual/generic/android/hwgfx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/android/hwgfx.yaml -------------------------------------------------------------------------------- /manual/generic/android/installation-instructions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/android/installation-instructions.yaml -------------------------------------------------------------------------------- /manual/generic/android/large-wifi-file-transfer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/android/large-wifi-file-transfer.yaml -------------------------------------------------------------------------------- /manual/generic/android/linaro-android-build-command.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/android/linaro-android-build-command.yaml -------------------------------------------------------------------------------- /manual/generic/android/linaro-kernel-build-command.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/android/linaro-kernel-build-command.yaml -------------------------------------------------------------------------------- /manual/generic/android/monkeyrunner-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/android/monkeyrunner-test.yaml -------------------------------------------------------------------------------- /manual/generic/android/open-accessory.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/android/open-accessory.yaml -------------------------------------------------------------------------------- /manual/generic/android/perf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/android/perf.yaml -------------------------------------------------------------------------------- /manual/generic/android/pm-qa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/android/pm-qa.yaml -------------------------------------------------------------------------------- /manual/generic/android/powerdebug.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/android/powerdebug.yaml -------------------------------------------------------------------------------- /manual/generic/android/powertop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/android/powertop.yaml -------------------------------------------------------------------------------- /manual/generic/android/pre-built.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/android/pre-built.yaml -------------------------------------------------------------------------------- /manual/generic/android/primary-video-out-vga.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/android/primary-video-out-vga.yaml -------------------------------------------------------------------------------- /manual/generic/android/reboot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/android/reboot.yaml -------------------------------------------------------------------------------- /manual/generic/android/sd-mmc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/android/sd-mmc.yaml -------------------------------------------------------------------------------- /manual/generic/android/secondary-video-output.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/android/secondary-video-output.yaml -------------------------------------------------------------------------------- /manual/generic/android/shutdown-console.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/android/shutdown-console.yaml -------------------------------------------------------------------------------- /manual/generic/android/shutdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/android/shutdown.yaml -------------------------------------------------------------------------------- /manual/generic/android/small-wifi-file-transfer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/android/small-wifi-file-transfer.yaml -------------------------------------------------------------------------------- /manual/generic/android/toolchain-version.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/android/toolchain-version.yaml -------------------------------------------------------------------------------- /manual/generic/android/usb-camera-record.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/android/usb-camera-record.yaml -------------------------------------------------------------------------------- /manual/generic/android/usb-camera.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/android/usb-camera.yaml -------------------------------------------------------------------------------- /manual/generic/android/usb-ethernet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/android/usb-ethernet.yaml -------------------------------------------------------------------------------- /manual/generic/android/usb-host-keyboard.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/android/usb-host-keyboard.yaml -------------------------------------------------------------------------------- /manual/generic/android/usb-host-mouse.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/android/usb-host-mouse.yaml -------------------------------------------------------------------------------- /manual/generic/android/usb-host-storage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/android/usb-host-storage.yaml -------------------------------------------------------------------------------- /manual/generic/android/usb-tethering.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/android/usb-tethering.yaml -------------------------------------------------------------------------------- /manual/generic/android/wifi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/android/wifi.yaml -------------------------------------------------------------------------------- /manual/generic/android/youtube.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/android/youtube.yaml -------------------------------------------------------------------------------- /manual/generic/hdmi-audio.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/hdmi-audio.yaml -------------------------------------------------------------------------------- /manual/generic/hdmi-input-switch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/hdmi-input-switch.yaml -------------------------------------------------------------------------------- /manual/generic/kernel-version.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/kernel-version.yaml -------------------------------------------------------------------------------- /manual/generic/linux/bluetooth-audio-ui.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/linux/bluetooth-audio-ui.yaml -------------------------------------------------------------------------------- /manual/generic/linux/bluetooth-audio.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/linux/bluetooth-audio.yaml -------------------------------------------------------------------------------- /manual/generic/linux/bluetooth-file-transfer-ui.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/linux/bluetooth-file-transfer-ui.yaml -------------------------------------------------------------------------------- /manual/generic/linux/bluetooth-pair-ui.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/linux/bluetooth-pair-ui.yaml -------------------------------------------------------------------------------- /manual/generic/linux/bluetooth-pair.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/linux/bluetooth-pair.yaml -------------------------------------------------------------------------------- /manual/generic/linux/bluetooth-scan-ui.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/linux/bluetooth-scan-ui.yaml -------------------------------------------------------------------------------- /manual/generic/linux/bluetooth-scan.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/linux/bluetooth-scan.yaml -------------------------------------------------------------------------------- /manual/generic/linux/disk-boot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/linux/disk-boot.yaml -------------------------------------------------------------------------------- /manual/generic/linux/display-blanking.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/linux/display-blanking.yaml -------------------------------------------------------------------------------- /manual/generic/linux/ds5-remote-debug.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/linux/ds5-remote-debug.yaml -------------------------------------------------------------------------------- /manual/generic/linux/ds5-ssh.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/linux/ds5-ssh.yaml -------------------------------------------------------------------------------- /manual/generic/linux/hdmi-resolution-switching-cmd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/linux/hdmi-resolution-switching-cmd.yaml -------------------------------------------------------------------------------- /manual/generic/linux/hdmi-resolution-switching.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/linux/hdmi-resolution-switching.yaml -------------------------------------------------------------------------------- /manual/generic/linux/ip-forwarding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/linux/ip-forwarding.yaml -------------------------------------------------------------------------------- /manual/generic/linux/kvm-arm32-guest-on-arm64-host.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/linux/kvm-arm32-guest-on-arm64-host.yaml -------------------------------------------------------------------------------- /manual/generic/linux/kvm-arm64-guest-on-arm64-host.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/linux/kvm-arm64-guest-on-arm64-host.yaml -------------------------------------------------------------------------------- /manual/generic/linux/luvos.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/linux/luvos.yaml -------------------------------------------------------------------------------- /manual/generic/linux/multi-nic-download.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/linux/multi-nic-download.yaml -------------------------------------------------------------------------------- /manual/generic/linux/network-basic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/linux/network-basic.yaml -------------------------------------------------------------------------------- /manual/generic/linux/network-manager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/linux/network-manager.yaml -------------------------------------------------------------------------------- /manual/generic/linux/opengl-fps.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/linux/opengl-fps.yaml -------------------------------------------------------------------------------- /manual/generic/linux/openssh-centos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/linux/openssh-centos.sh -------------------------------------------------------------------------------- /manual/generic/linux/openssh-centos.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/linux/openssh-centos.yaml -------------------------------------------------------------------------------- /manual/generic/linux/openssl-centos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/linux/openssl-centos.sh -------------------------------------------------------------------------------- /manual/generic/linux/openssl-centos.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/linux/openssl-centos.yaml -------------------------------------------------------------------------------- /manual/generic/linux/openssl-debian.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/linux/openssl-debian.yaml -------------------------------------------------------------------------------- /manual/generic/linux/ota-rollback.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/linux/ota-rollback.yaml -------------------------------------------------------------------------------- /manual/generic/linux/ota-update.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/linux/ota-update.yaml -------------------------------------------------------------------------------- /manual/generic/linux/power-off-cmd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/linux/power-off-cmd.yaml -------------------------------------------------------------------------------- /manual/generic/linux/power-off.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/linux/power-off.yaml -------------------------------------------------------------------------------- /manual/generic/linux/pxe-boot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/linux/pxe-boot.yaml -------------------------------------------------------------------------------- /manual/generic/linux/reboot-ui.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/linux/reboot-ui.yaml -------------------------------------------------------------------------------- /manual/generic/linux/reboot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/linux/reboot.yaml -------------------------------------------------------------------------------- /manual/generic/linux/sd-mmc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/linux/sd-mmc.yaml -------------------------------------------------------------------------------- /manual/generic/linux/sdcard-cold-boot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/linux/sdcard-cold-boot.yaml -------------------------------------------------------------------------------- /manual/generic/linux/sdcard-hot-plug.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/linux/sdcard-hot-plug.yaml -------------------------------------------------------------------------------- /manual/generic/linux/secondary-video-out.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/linux/secondary-video-out.yaml -------------------------------------------------------------------------------- /manual/generic/linux/software-raid0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/linux/software-raid0.yaml -------------------------------------------------------------------------------- /manual/generic/linux/software-raid1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/linux/software-raid1.yaml -------------------------------------------------------------------------------- /manual/generic/linux/software-raid5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/linux/software-raid5.yaml -------------------------------------------------------------------------------- /manual/generic/linux/usb-3.0-arndale5250.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/linux/usb-3.0-arndale5250.yaml -------------------------------------------------------------------------------- /manual/generic/linux/usb-camera.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/linux/usb-camera.yaml -------------------------------------------------------------------------------- /manual/generic/linux/usb-ethernet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/linux/usb-ethernet.yaml -------------------------------------------------------------------------------- /manual/generic/linux/usb-keyboard.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/linux/usb-keyboard.yaml -------------------------------------------------------------------------------- /manual/generic/linux/usb-storage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/linux/usb-storage.yaml -------------------------------------------------------------------------------- /manual/generic/linux/wifi-large-download.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/linux/wifi-large-download.yaml -------------------------------------------------------------------------------- /manual/generic/linux/wifi-small-download.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/linux/wifi-small-download.yaml -------------------------------------------------------------------------------- /manual/generic/linux/wifi-teminal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/linux/wifi-teminal.yaml -------------------------------------------------------------------------------- /manual/generic/linux/wifi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/linux/wifi.yaml -------------------------------------------------------------------------------- /manual/generic/primary-video-out-hdmi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/primary-video-out-hdmi.yaml -------------------------------------------------------------------------------- /manual/generic/sdcard-speed-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/sdcard-speed-test.yaml -------------------------------------------------------------------------------- /manual/generic/serial-console.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/serial-console.yaml -------------------------------------------------------------------------------- /manual/generic/usb-hid-device.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/usb-hid-device.yaml -------------------------------------------------------------------------------- /manual/generic/usb-storage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/generic/usb-storage.yaml -------------------------------------------------------------------------------- /manual/hikey/hikey-power-button.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/hikey/hikey-power-button.yaml -------------------------------------------------------------------------------- /manual/hikey/hikey-user-led.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/manual/hikey/hikey-user-led.yaml -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /mkdocs_plugin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkdocs_plugin/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/mkdocs_plugin/pyproject.toml -------------------------------------------------------------------------------- /mkdocs_plugin/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/mkdocs_plugin/requirements.txt -------------------------------------------------------------------------------- /mkdocs_plugin/testdefinitionsmkdocs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/mkdocs_plugin/testdefinitionsmkdocs/__init__.py -------------------------------------------------------------------------------- /plans/erp/erp-enterprise.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/plans/erp/erp-enterprise.yaml -------------------------------------------------------------------------------- /plans/erp/erp-functional.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/plans/erp/erp-functional.yaml -------------------------------------------------------------------------------- /plans/erp/erp-ltp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/plans/erp/erp-ltp.yaml -------------------------------------------------------------------------------- /plans/erp/erp-performance.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/plans/erp/erp-performance.yaml -------------------------------------------------------------------------------- /plans/erp/erp-stress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/plans/erp/erp-stress.yaml -------------------------------------------------------------------------------- /plans/erp/overlays/centriq-2400.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/plans/erp/overlays/centriq-2400.yaml -------------------------------------------------------------------------------- /plans/erp/overlays/d03.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/plans/erp/overlays/d03.yaml -------------------------------------------------------------------------------- /plans/erp/overlays/d05.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/plans/erp/overlays/d05.yaml -------------------------------------------------------------------------------- /plans/erp/overlays/mt30-gs1-00.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/plans/erp/overlays/mt30-gs1-00.yaml -------------------------------------------------------------------------------- /plans/erp/overlays/proliant-m400-server.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/plans/erp/overlays/proliant-m400-server.yaml -------------------------------------------------------------------------------- /plans/foundries-manufacturing-test-plan.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/plans/foundries-manufacturing-test-plan.yaml -------------------------------------------------------------------------------- /plans/linux-test-plan-example-v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/plans/linux-test-plan-example-v1.yaml -------------------------------------------------------------------------------- /plans/linux-test-plan-example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/plans/linux-test-plan-example.yaml -------------------------------------------------------------------------------- /plans/qcomlt/bench.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/plans/qcomlt/bench.yaml -------------------------------------------------------------------------------- /plans/qcomlt/smoke.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/plans/qcomlt/smoke.yaml -------------------------------------------------------------------------------- /plans/qcomlt/stress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/plans/qcomlt/stress.yaml -------------------------------------------------------------------------------- /plans/requirements.txt: -------------------------------------------------------------------------------- 1 | Jinja2 2 | PyYAML 3 | pdfkit 4 | -------------------------------------------------------------------------------- /plans/templates/_test_details.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/plans/templates/_test_details.html -------------------------------------------------------------------------------- /plans/templates/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/plans/templates/test.html -------------------------------------------------------------------------------- /plans/templates/testplan.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/plans/templates/testplan.html -------------------------------------------------------------------------------- /plans/templates/testplan_v2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/plans/templates/testplan_v2.html -------------------------------------------------------------------------------- /plans/test-plan-overlay-example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/plans/test-plan-overlay-example.yaml -------------------------------------------------------------------------------- /plans/testplan2html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/plans/testplan2html.py -------------------------------------------------------------------------------- /sanity-check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/sanity-check.sh -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/test.sh -------------------------------------------------------------------------------- /test/Dockerfile.centos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/test/Dockerfile.centos -------------------------------------------------------------------------------- /test/Dockerfile.debian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/test/Dockerfile.debian -------------------------------------------------------------------------------- /validate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linaro/test-definitions/HEAD/validate.py --------------------------------------------------------------------------------