aboutsummaryrefslogtreecommitdiff
path: root/automated/linux
AgeCommit message (Collapse)Author
2021-01-07ltp: allow to set LTP_INSTALL_PATHRémi Duraffort
2021-01-05ltp: allow to pass skipfile as absolute pathRémi Duraffort
Also add missing quotes around variable.
2021-01-05Remove "-q" option from pi_stressVidyasagar G C
"-q" option will suppress "Current Inversions" to be displayed or redirected to a log file. Hence the pi-stress test is getting failed due to the condition statement where "Current Inversions" is being grep from log file.
2020-12-16Merge pull request #259 from fboudra/mastermwasilew
automated: linux: device-tree: refactor the test
2020-12-16automated: linux: device-tree: refactor the testFathi Boudra
Prepare for adding a skip list. Make the test easier to read and follow. * there's a couple of functions that aren't necessary. * being root isn't necessary. * added SPDX license identifier, set to GPL-2.0-only. Note: the license was previously GPL2+. It has been agreed by its authors to relicense to GPL-2.0-only. Signed-off-by: Fathi Boudra <fathi.boudra@linaro.org>
2020-12-14kselftest: skipfile: Adding branch 5.10Naresh Kamboju
Signed-off-by: Naresh Kamboju <naresh.kamboju@linaro.org>
2020-12-11automated: linux: fwts: make it run the default testsAnders Roxell
Suggested-by: Naresh Kamboju <naresh.kamboju@linaro.org> Signed-off-by: Anders Roxell <anders.roxell@linaro.org>
2020-12-09fwts: improve results parserNaresh Kamboju
Signed-off-by: Naresh Kamboju <naresh.kamboju@linaro.org>
2020-12-08selftests: skip kvm kvm_create_max_vcpus on arm64Naresh Kamboju
Signed-off-by: Naresh Kamboju <naresh.kamboju@linaro.org>
2020-12-08selftests: vm: run_vmtests hangs on arm64Naresh Kamboju
Signed-off-by: Naresh Kamboju <naresh.kamboju@linaro.org>
2020-11-27kselftest: skip net fib_nexthops.sh on nfs mounted devicesNaresh Kamboju
Signed-off-by: Naresh Kamboju <naresh.kamboju@linaro.org>
2020-11-27kselftests: skip ftracetest on 5.9 branchNaresh Kamboju
Signed-off-by: Naresh Kamboju <naresh.kamboju@linaro.org>
2020-11-27Create tvm-bench.shTheodore
Creating ml-bench and tvm-bench for application of machine learning benchmarks.
2020-11-23LTP: Adding ftrace_stress_test.sh as known issuesNaresh Kamboju
LTP tracing test case ftrace_stress_test.sh crashing on all devices. ftrace_buffer_size_kb.sh: line 33: echo: write error: Cannot allocate memory rcu: INFO: rcu_sched detected stalls on CPUs/tasks RIP: 0010:queued_spin_lock_slowpath+0x46/0x1b0 ref: https://bugs.linaro.org/show_bug.cgi?id=5722 Signed-off-by: Naresh Kamboju <naresh.kamboju@linaro.org>
2020-11-20LTP: Skip long running test cases bind06 cve-2018-18559Naresh Kamboju
all other LTP test runs for 15 minutes at max but this test case is running for 30 minutes which is too long. So skipping till it get fixed upstream. ref: https://bugs.linaro.org/show_bug.cgi?id=5721 Signed-off-by: Naresh Kamboju <naresh.kamboju@linaro.org>
2020-10-29Merge pull request #238 from roxell/run-ltp-from-gitmwasilew
Run ltp from git
2020-10-26automated: linux: ltp: incorporate building LTP from gitAnders Roxell
Added variables: TEST_GIT_URL url to the git repository, TEST_DIR download directory where the build happens, and a BUILD_FROM_TAR flag. Signed-off-by: Anders Roxell <anders.roxell@linaro.org>
2020-10-23fwts: pkgs: update packageAnders Roxell
Signed-off-by: Anders Roxell <anders.roxell@linaro.org>
2020-10-23fwts: fwts.sh: install testsAnders Roxell
Signed-off-by: Anders Roxell <anders.roxell@linaro.org>
2020-10-23fwts: update to use the common git clone of the testAnders Roxell
Signed-off-by: Anders Roxell <anders.roxell@linaro.org>
2020-10-23fwts: add help text for skip installAnders Roxell
Signed-off-by: Anders Roxell <anders.roxell@linaro.org>
2020-10-23fwts: fix FWTS_URL bugAnders Roxell
Signed-off-by: Anders Roxell <anders.roxell@linaro.org>
2020-10-23fwts: fix test name parameterNaresh Kamboju
Signed-off-by: Naresh Kamboju <naresh.kamboju@linaro.org> Signed-off-by: Anders Roxell <anders.roxell@linaro.org>
2020-10-23fwts: check if already installedAnders Roxell
Signed-off-by: Anders Roxell <anders.roxell@linaro.org>
2020-10-23ssuite: update to use the common git clone of the testAnders Roxell
Signed-off-by: Anders Roxell <anders.roxell@linaro.org>
2020-10-23ssuite: fix S_URL bugAnders Roxell
Signed-off-by: Anders Roxell <anders.roxell@linaro.org>
2020-10-23ssuite: add help text for skip installAnders Roxell
Signed-off-by: Anders Roxell <anders.roxell@linaro.org>
2020-10-22rteval: default TEST_DIR to /opt/${TEST_PROGRAM}Anders Roxell
2020-10-22rteval: usage: use correct variable TEST_GIT_URLAnders Roxell
Signed-off-by: Anders Roxell <anders.roxell@linaro.org>
2020-10-22rteval: update text: skip_install package dependencyAnders Roxell
Signed-off-by: Anders Roxell <anders.roxell@linaro.org>
2020-10-22rteval: usage: fix help textAnders Roxell
Signed-off-by: Anders Roxell <anders.roxell@linaro.org>
2020-10-22rteval: move get_test_program to sh-test-libAnders Roxell
This is something that is used in multiple scripts. Moving it to the sh-test-lib so we only have one place to improve and more can use the same way to clone a git repository. Signed-off-by: Anders Roxell <anders.roxell@linaro.org>
2020-10-17igt: Force python to use uft-8 as stderr/stdout encodingArthur She
LKFT Python environment will still use ASCII as stdout encoding which led to some problems while parsing igt test result log. Setting 'PYTHONIOENCODING=utf-8' will solve this problem. Signed-off-by: Arthur She <arthur.she@linaro.org>
2020-10-17igt: Remove commands which is used to delete Chamelium logsArthur She
Due to we will reboot the Chamelium at the beginning of the test. No need to delete Chamelium logs. Signed-off-by: Arthur She <arthur.she@linaro.org>
2020-10-15Merge pull request #228 from alimon/mastermwasilew
automated/linux/deqp-runner: Remove unneeded quotes in deqp-runner
2020-10-15Merge pull request #229 from arthur-she/igt-utf8-test-resultsmwasilew
igt: process test result log with UTF-8 encoding
2020-10-14igt: process test result log with UTF-8 encodingArthur She
Process the test result log with UTF-8 encoding Signed-off-by: Arthur She <arthur.she@linaro.org>
2020-10-14automated/linux/deqp-runner: Remove unneeded quotes in deqp-runnerAníbal Limón
Signed-off-by: Aníbal Limón <anibal.limon@linaro.org>
2020-10-14rteval: fix TEST_GIT_URL bugAnders Roxell
Signed-off-by: Anders Roxell <anders.roxell@linaro.org>
2020-10-12igt: run tests through igt_runner to avoid dmesg-warnArthur She
Previously, we run the tests through run-tests.sh which maintains good compatibility with piglit and igt_runner. However, some test results were overridden to dmesg-warn/dmesg-fail, due to some kernel message. These test results were not recognized by LAVA. To avoid it, we can run tests through igt_runner with "--dmesg-warn-level 0" argument. Since Aug 8th 2018, the igt_runner has been included in the igt-gpu-tools. We can run tests with it and no need piglit. This patch removes piglit related code and runs tests through igt_runner directly. Signed-off-by: Arthur She <arthur.she@linaro.org>
2020-10-06kunit: Adding kunit testsNaresh Kamboju
KUnit is a lightweight unit testing and mocking framework for the Linux kernel. KUnit consists of a kernel component, which provides a set of macros for easily writing unit tests. Tests written against KUnit will run on kernel boot if built-in, or when loaded if built as a module. Signed-off-by: Naresh Kamboju <naresh.kamboju@linaro.org>
2020-10-05deqp-runner: Add definition to run deQP test suiteAníbal Limón
Test job, example, https://validation.linaro.org/scheduler/job/2165199 Signed-off-by: Aníbal Limón <anibal.limon@linaro.org>
2020-10-05automated/linux/glmark2: Parse replace <> to []Aníbal Limón
LAVA uses <> for signal result record so replace to [] avoid problems when parsing. Signed-off-by: Aníbal Limón <anibal.limon@linaro.org>
2020-10-05Merge pull request #225 from Mani-Sadhasivam/rb5mwasilew
linux: wlan-download: Always ping google.com
2020-10-05linux: wlan-download: Always ping google.comManivannan Sadhasivam
Currently the test case extracts hostname from FILE_URL and tries to ping it. But due to the server configuration, "testdata.validation.linaro.org" is not accepting ping requests now. So, let's use google.com statically to ping. This will rule out possible ping issues in future also. Signed-off-by: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2020-10-05crypto: tcrypt module could be absentCorentin LABBE
In vanilla kernel, the tcrypt module is not built. So in case of absent module, the test should be set as "skip" and not "pass". While fixing this, I just saw some return are missing in result().
2020-10-03kselftest: skip hang test case ptrace vmaccessNaresh Kamboju
ptrace vmaccess hangs on all devices on stable rc 4.19 branch and lower kernel versions so skipping this hang test case. ref: https://bugs.linaro.org/show_bug.cgi?id=5683 Signed-off-by: Naresh Kamboju <naresh.kamboju@linaro.org>
2020-10-01linux: bootrr: Move into cloned repo before executing testManivannan Sadhasivam
Currently bootrr tests are not executed as we are not moving into the cloned repository. Fix it! Signed-off-by: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2020-09-29add rteval suiteAnders Roxell
Signed-off-by: Anders Roxell <anders.roxell@linaro.org>
2020-09-28Merge pull request #214 from montjoie/cryptomwasilew
crypto: basic tests