|
serial port test based on board farm REST API
Hello everyone, Please find below the script I used for the serial port hardware test demonstration I did in the OATS conference call on Thursday. It would be good to discuss the following, with the f
Hello everyone, Please find below the script I used for the serial port hardware test demonstration I did in the OATS conference call on Thursday. It would be good to discuss the following, with the f
|
By Tim Bird
·
|
|
OATS call today
Hi, The OATS call is today at 14:00 UTC [1] (in 1.5 hrs). Sorry about the late notice. Thanks, anmar [1] https://elinux.org/Automated_Testing#Conference_call
Hi, The OATS call is today at 14:00 UTC [1] (in 1.5 hrs). Sorry about the late notice. Thanks, anmar [1] https://elinux.org/Automated_Testing#Conference_call
|
By Anmar Oueja
·
|
|
Yocto Project Summit - registration open
Registration is now open for the upcoming Yocto Project Summit!! details: https://www.yoctoproject.org/yocto-project-virtual-summit-2021/ CfP: https://pretalx.com/yocto-project-summit-2021/cfp registr
Registration is now open for the upcoming Yocto Project Summit!! details: https://www.yoctoproject.org/yocto-project-virtual-summit-2021/ CfP: https://pretalx.com/yocto-project-summit-2021/cfp registr
|
By Trevor Woerner
·
|
|
Yocto Project Virtual Summit 2021
The Yocto Project Summit Planning Committee is happy to announce the upcoming 3rd Yocto Project Summit to take place Tuesday and Wednesday May 25-26 2021, virtually. The 2-day event will run in 2 trac
The Yocto Project Summit Planning Committee is happy to announce the upcoming 3rd Yocto Project Summit to take place Tuesday and Wednesday May 25-26 2021, virtually. The 2-day event will run in 2 trac
|
By Trevor Woerner
·
|
|
#KCIDB Collecting UX user stories
#kcidb
Hi everyone involved with or interested in KCIDB, A while ago we at KernelCI started collecting possible user stories for the new KernelCI dashboard, accommodating KCIDB among other things: https://gi
Hi everyone involved with or interested in KCIDB, A while ago we at KernelCI started collecting possible user stories for the new KernelCI dashboard, accommodating KCIDB among other things: https://gi
|
By Nikolai Kondrashov
·
|
|
#KCIDB engagement report
#kcidb
Hi everyone, Below is the monthly report on KCIDB* engagement. It lists various CI systems and their status of engagement with KCIDB, and once we get to that, will list developer engagement. Lines wit
Hi everyone, Below is the monthly report on KCIDB* engagement. It lists various CI systems and their status of engagement with KCIDB, and once we get to that, will list developer engagement. Lines wit
|
By Nikolai Kondrashov
·
|
|
OATS call this Thursday - March 11th at 15:00 UTC
Hi everyone, Our monthly call [1] is this Thursday at 15:00 UTC. Agenda items and newcomers are always welcome. Cheers! anmar [1] https://elinux.org/Automated_Testing#Conference_call
Hi everyone, Our monthly call [1] is this Thursday at 15:00 UTC. Agenda items and newcomers are always welcome. Cheers! anmar [1] https://elinux.org/Automated_Testing#Conference_call
|
By Anmar Oueja
·
|
|
KernelCI backend redesign and generic lab support
Hello, As it has been mentioned multiple times recently, the kernelci-backend code is ageing pretty badly: it's doing too many things so it's hard to maintain, there are better ways to implement a bac
Hello, As it has been mentioned multiple times recently, the kernelci-backend code is ageing pretty badly: it's doing too many things so it's hard to maintain, there are better ways to implement a bac
|
By Guillaume Tucker
·
|
|
[PATCH v2 0/5] Another attempt at hardware discovery 5 messages
This is a second attempt on hardware discovery LTP support. The main difference between the previous attempts is that this version uses JSON, which allows us propagate structured data to the test. Thi
This is a second attempt on hardware discovery LTP support. The main difference between the previous attempts is that this version uses JSON, which allows us propagate structured data to the test. Thi
|
By Cyril Hrubis
·
|
|
[PATCH v2 2/5] lib: Add minimalistic json parser 2 messages
Signed-off-by: Cyril Hrubis <chrubis@...> --- include/tst_json.h | 177 ++++++++++++ lib/tst_json.c | 679 +++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 856 insertions(+) create mode 10
Signed-off-by: Cyril Hrubis <chrubis@...> --- include/tst_json.h | 177 ++++++++++++ lib/tst_json.c | 679 +++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 856 insertions(+) create mode 10
|
By Cyril Hrubis
·
|
|
[PATCH v2 1/5] lib: tst_cmd: Make tst_cmd() usable for global paths 2 messages
We need to skip the check if the path to the binary starts with '/'. Signed-off-by: Cyril Hrubis <chrubis@...> --- lib/tst_cmd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/t
We need to skip the check if the path to the binary starts with '/'. Signed-off-by: Cyril Hrubis <chrubis@...> --- lib/tst_cmd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/t
|
By Cyril Hrubis
·
|
|
[PATCH v2 5/5] testcases: uart01: Add.
Execute from the git checkout as: LTPROOT=3D~/foo/bar/ltp/ HARDWARE_DISCOVERY=3D${LTPROOT}hardware-discove= ry.sh ./uart01 -s 10240 Signed-off-by: Cyril Hrubis <chrubis@...> --- runtest/device_drivers
Execute from the git checkout as: LTPROOT=3D~/foo/bar/ltp/ HARDWARE_DISCOVERY=3D${LTPROOT}hardware-discove= ry.sh ./uart01 -s 10240 Signed-off-by: Cyril Hrubis <chrubis@...> --- runtest/device_drivers
|
By Cyril Hrubis
·
|
|
[PATCH v2 4/5] Sample hardware discovery and reconfigure scripts
This is not going to be part of the final patchset. Signed-off-by: Cyril Hrubis <chrubis@...> --- hardware-discovery.sh | 36 ++++++++++++++++++++++++++++++++++++ hardware-reconfigure.sh | 3 +++ 2 file
This is not going to be part of the final patchset. Signed-off-by: Cyril Hrubis <chrubis@...> --- hardware-discovery.sh | 36 ++++++++++++++++++++++++++++++++++++ hardware-reconfigure.sh | 3 +++ 2 file
|
By Cyril Hrubis
·
|
|
[PATCH v2 3/5] lib: Add hardware discovery code
See lib/tst_hardware.h for details. Signed-off-by: Cyril Hrubis <chrubis@...> --- include/tst_hwconf.h | 13 +++ include/tst_test.h | 3 + lib/tst_hardware.c | 218 ++++++++++++++++++++++++++++++++++++++
See lib/tst_hardware.h for details. Signed-off-by: Cyril Hrubis <chrubis@...> --- include/tst_hwconf.h | 13 +++ include/tst_test.h | 3 + lib/tst_hardware.c | 218 ++++++++++++++++++++++++++++++++++++++
|
By Cyril Hrubis
·
|
|
#KCIDB engagement report
#kcidb
Hi everyone, Below is the monthly report on KCIDB* engagement. It lists various CI systems and their status of engagement with KCIDB, and once we get to that, will list developer engagement. Lines wit
Hi everyone, Below is the monthly report on KCIDB* engagement. It lists various CI systems and their status of engagement with KCIDB, and once we get to that, will list developer engagement. Lines wit
|
By Nikolai Kondrashov
·
|
|
OATS call this Thusday
Hi, Our monthly Zoom call [1] is happening this Thursday at 15:00 UTC. == Agenda == * Benchmark data analysis and regression detection tool * Projects updates (per attendees) Agenda items are welcome.
Hi, Our monthly Zoom call [1] is happening this Thursday at 15:00 UTC. == Agenda == * Benchmark data analysis and regression detection tool * Projects updates (per attendees) Agenda items are welcome.
|
By Anmar Oueja
·
|
|
KCIDB engagement report 7 messages
Hi everyone, Below is the monthly report on KCIDB* engagement. It lists various CI systems and their status of engagement with KCIDB, and once we get to that, will list developer engagement. Lines wit
Hi everyone, Below is the monthly report on KCIDB* engagement. It lists various CI systems and their status of engagement with KCIDB, and once we get to that, will list developer engagement. Lines wit
|
By Nikolai Kondrashov
·
|
|
Monthly call is tomorrow 2 messages
Hello Everyone, Sorry for the late notice but it's been a hell of a 2021 so far :) Tomorrow (Thursday) is our first OATS call [1] of the year. You can respond with your agenda items or just show up on
Hello Everyone, Sorry for the late notice but it's been a hell of a 2021 so far :) Tomorrow (Thursday) is our first OATS call [1] of the year. You can respond with your agenda items or just show up on
|
By Anmar Oueja
·
|
|
RFC: dashboards, visualization and analytics for test results 3 messages
Hello folks interested in kernel testing/automation, The KernelCI project is starting to look at what's next for dashboards, visualization and analytics for the various Linux focused testing projects.
Hello folks interested in kernel testing/automation, The KernelCI project is starting to look at what's next for dashboards, visualization and analytics for the various Linux focused testing projects.
|
By Kevin Hilman
·
|
|
KCIDB engagement report
Hi everyone, Below is the monthly report on KCIDB* engagement. It lists various CI systems and their status of engagement with KCIDB, and once we get to that, will list developer engagement. Lines wit
Hi everyone, Below is the monthly report on KCIDB* engagement. It lists various CI systems and their status of engagement with KCIDB, and once we get to that, will list developer engagement. Lines wit
|
By Nikolai Kondrashov
·
|