2020-04-22 15:59:01 |
Kleber Sacilotto de Souza |
bug |
|
|
added bug |
2020-04-22 16:00:10 |
Kleber Sacilotto de Souza |
nominated for series |
|
Ubuntu Eoan |
|
2020-04-22 16:00:10 |
Kleber Sacilotto de Souza |
bug task added |
|
linux (Ubuntu Eoan) |
|
2020-04-22 16:00:10 |
Kleber Sacilotto de Souza |
nominated for series |
|
Ubuntu Bionic |
|
2020-04-22 16:00:10 |
Kleber Sacilotto de Souza |
bug task added |
|
linux (Ubuntu Bionic) |
|
2020-04-22 16:00:10 |
Kleber Sacilotto de Souza |
nominated for series |
|
Ubuntu Focal |
|
2020-04-22 16:00:10 |
Kleber Sacilotto de Souza |
bug task added |
|
linux (Ubuntu Focal) |
|
2020-04-22 16:00:10 |
Kleber Sacilotto de Souza |
nominated for series |
|
Ubuntu Xenial |
|
2020-04-22 16:00:10 |
Kleber Sacilotto de Souza |
bug task added |
|
linux (Ubuntu Xenial) |
|
2020-04-22 16:00:10 |
Kleber Sacilotto de Souza |
nominated for series |
|
Ubuntu Precise |
|
2020-04-22 16:00:10 |
Kleber Sacilotto de Souza |
bug task added |
|
linux (Ubuntu Precise) |
|
2020-04-22 16:00:10 |
Kleber Sacilotto de Souza |
nominated for series |
|
Ubuntu Trusty |
|
2020-04-22 16:00:10 |
Kleber Sacilotto de Souza |
bug task added |
|
linux (Ubuntu Trusty) |
|
2020-04-22 16:00:23 |
Ubuntu Kernel Bot |
linux (Ubuntu): status |
New |
Incomplete |
|
2020-04-22 16:00:24 |
Ubuntu Kernel Bot |
linux (Ubuntu Bionic): status |
New |
Incomplete |
|
2020-04-22 16:00:27 |
Kleber Sacilotto de Souza |
linux (Ubuntu Precise): importance |
Undecided |
Medium |
|
2020-04-22 16:00:37 |
Kleber Sacilotto de Souza |
linux (Ubuntu Focal): importance |
Undecided |
Medium |
|
2020-04-22 16:00:43 |
Kleber Sacilotto de Souza |
linux (Ubuntu Bionic): importance |
Undecided |
Medium |
|
2020-04-22 16:00:47 |
Kleber Sacilotto de Souza |
linux (Ubuntu Eoan): importance |
Undecided |
Medium |
|
2020-04-22 16:00:57 |
Kleber Sacilotto de Souza |
linux (Ubuntu Trusty): importance |
Undecided |
Medium |
|
2020-04-22 16:00:59 |
Kleber Sacilotto de Souza |
linux (Ubuntu Xenial): importance |
Undecided |
Medium |
|
2020-04-22 16:01:19 |
Kleber Sacilotto de Souza |
linux (Ubuntu Focal): status |
Incomplete |
In Progress |
|
2020-04-22 16:01:22 |
Kleber Sacilotto de Souza |
linux (Ubuntu Eoan): status |
New |
In Progress |
|
2020-04-22 16:01:26 |
Kleber Sacilotto de Souza |
linux (Ubuntu Focal): assignee |
|
Kleber Sacilotto de Souza (kleber-souza) |
|
2020-04-22 16:01:28 |
Kleber Sacilotto de Souza |
linux (Ubuntu Eoan): assignee |
|
Kleber Sacilotto de Souza (kleber-souza) |
|
2020-04-22 16:01:30 |
Kleber Sacilotto de Souza |
linux (Ubuntu Bionic): assignee |
|
Kleber Sacilotto de Souza (kleber-souza) |
|
2020-04-22 16:01:34 |
Kleber Sacilotto de Souza |
linux (Ubuntu Xenial): assignee |
|
Kleber Sacilotto de Souza (kleber-souza) |
|
2020-04-22 16:01:36 |
Kleber Sacilotto de Souza |
linux (Ubuntu Trusty): assignee |
|
Kleber Sacilotto de Souza (kleber-souza) |
|
2020-04-22 16:01:38 |
Kleber Sacilotto de Souza |
linux (Ubuntu Precise): assignee |
|
Kleber Sacilotto de Souza (kleber-souza) |
|
2020-04-22 16:01:44 |
Kleber Sacilotto de Souza |
linux (Ubuntu Xenial): status |
New |
In Progress |
|
2020-04-22 16:01:46 |
Kleber Sacilotto de Souza |
linux (Ubuntu Trusty): status |
New |
In Progress |
|
2020-04-22 16:01:47 |
Kleber Sacilotto de Souza |
linux (Ubuntu Precise): status |
New |
In Progress |
|
2020-04-22 16:01:50 |
Kleber Sacilotto de Souza |
linux (Ubuntu Bionic): status |
Incomplete |
In Progress |
|
2020-04-22 16:17:52 |
Kleber Sacilotto de Souza |
summary |
Add a debian/rules target to compile/run kernel selftests |
Add debian/rules targets to compile/run kernel selftests |
|
2020-04-22 16:38:15 |
Kleber Sacilotto de Souza |
description |
[Impact]
When compiling and building the Ubuntu kernels, the kernel selftests located under 'tools/testing/selftests/' do not get compiled. Some of these testcases are used by our test infrastructure, which downloads the kernel source, compiles and run them. The problem with this approach is that patches applied to the testcases can break the compilation and this is detected only after the kernels are already released to -proposed.
I am proposing that we add some simple debian/rules targets that will keep a list of the selftests that Ubuntu cares about, compile and run them. This could be plugged into our test build infrastructure in order to be able to detect such breaks.
[Test Case]
With these changes, one would be able to run the following to compile/run the selftests:
# fakeroot debian/rules clean
# fakeroot debian/rules compileselftests
# fakeroot debian/rules runselftests
[Regression Potential]
None. This only adds a new rules target that will not break any existing target. |
[Impact]
When compiling and building the Ubuntu kernels, the kernel selftests located under 'tools/testing/selftests/' do not get compiled. Some of these testcases are used by our test infrastructure, which downloads the kernel source, compiles and run them. The problem with this approach is that patches applied to the testcases can break the compilation and this is detected only after the kernels are already released to -proposed.
I am proposing that we add some simple debian/rules targets that will keep a list of the selftests that Ubuntu cares about, compile and run them. This could be plugged into our test build infrastructure in order to be able to detect such breaks.
[Test Case]
With these changes, one would be able to run the following to compile/run the selftests:
# fakeroot debian/rules clean
# fakeroot debian/rules compileselftests
# fakeroot debian/rules runselftests
[Regression Potential]
None. This only adds new rules targets that will not break any existing targets. |
|
2020-04-23 15:07:27 |
Kleber Sacilotto de Souza |
bug task deleted |
linux (Ubuntu Precise) |
|
|
2020-04-23 15:07:33 |
Kleber Sacilotto de Souza |
bug task deleted |
linux (Ubuntu Trusty) |
|
|
2020-04-24 17:14:10 |
Kelsey Steele |
linux (Ubuntu Xenial): status |
In Progress |
Fix Committed |
|
2020-04-24 17:14:11 |
Kelsey Steele |
linux (Ubuntu Bionic): status |
In Progress |
Fix Committed |
|
2020-04-24 17:14:13 |
Kelsey Steele |
linux (Ubuntu Eoan): status |
In Progress |
Fix Committed |
|
2020-04-24 17:14:15 |
Kelsey Steele |
linux (Ubuntu Focal): status |
In Progress |
Fix Committed |
|
2020-04-29 23:47:06 |
Ubuntu Kernel Bot |
tags |
|
verification-needed-xenial |
|
2020-05-01 01:22:24 |
Ubuntu Kernel Bot |
tags |
verification-needed-xenial |
verification-needed-eoan verification-needed-xenial |
|
2020-05-01 01:52:08 |
Ubuntu Kernel Bot |
tags |
verification-needed-eoan verification-needed-xenial |
verification-needed-bionic verification-needed-eoan verification-needed-xenial |
|
2020-05-06 07:12:37 |
Ubuntu Kernel Bot |
tags |
verification-needed-bionic verification-needed-eoan verification-needed-xenial |
verification-needed-bionic verification-needed-eoan verification-needed-focal verification-needed-xenial |
|
2020-05-18 07:59:01 |
Kleber Sacilotto de Souza |
tags |
verification-needed-bionic verification-needed-eoan verification-needed-focal verification-needed-xenial |
verification-done-bionic verification-needed-eoan verification-needed-focal verification-needed-xenial |
|
2020-05-18 07:59:55 |
Kleber Sacilotto de Souza |
tags |
verification-done-bionic verification-needed-eoan verification-needed-focal verification-needed-xenial |
verification-done-bionic verification-done-eoan verification-needed-focal verification-needed-xenial |
|
2020-05-18 08:00:27 |
Kleber Sacilotto de Souza |
tags |
verification-done-bionic verification-done-eoan verification-needed-focal verification-needed-xenial |
verification-done-bionic verification-done-eoan verification-done-xenial verification-needed-focal |
|
2020-05-18 08:00:46 |
Kleber Sacilotto de Souza |
tags |
verification-done-bionic verification-done-eoan verification-done-xenial verification-needed-focal |
verification-done-bionic verification-done-eoan verification-done-focal verification-done-xenial |
|
2020-05-18 10:10:47 |
Launchpad Janitor |
linux (Ubuntu Bionic): status |
Fix Committed |
Fix Released |
|
2020-05-18 10:10:47 |
Launchpad Janitor |
cve linked |
|
2020-11494 |
|
2020-05-18 12:39:33 |
Launchpad Janitor |
linux (Ubuntu Xenial): status |
Fix Committed |
Fix Released |
|
2020-05-18 12:39:33 |
Launchpad Janitor |
cve linked |
|
2019-19060 |
|
2020-05-18 12:39:33 |
Launchpad Janitor |
cve linked |
|
2020-11608 |
|
2020-05-19 00:17:21 |
Launchpad Janitor |
linux (Ubuntu Focal): status |
Fix Committed |
Fix Released |
|
2020-05-19 21:37:06 |
Launchpad Janitor |
linux (Ubuntu Eoan): status |
Fix Committed |
Fix Released |
|
2020-07-28 00:57:39 |
Launchpad Janitor |
linux (Ubuntu): status |
In Progress |
Fix Released |
|
2020-07-28 00:57:39 |
Launchpad Janitor |
cve linked |
|
2019-16089 |
|
2020-07-28 00:57:39 |
Launchpad Janitor |
cve linked |
|
2019-19642 |
|
2020-07-28 00:57:39 |
Launchpad Janitor |
cve linked |
|
2020-11935 |
|