test: convert ubuntu-ci to use deny-list

Follows #16262
This commit is contained in:
Dan Streetman 2020-07-10 16:13:31 -04:00 committed by Zbigniew Jędrzejewski-Szmek
parent cb263973ac
commit 825cba0d43
6 changed files with 7 additions and 7 deletions

View File

@ -104,19 +104,19 @@ Ubuntu CI
New PR submitted to the project are run through regression tests, and one set New PR submitted to the project are run through regression tests, and one set
of those is the 'autopkgtest' runs for several different architectures, called of those is the 'autopkgtest' runs for several different architectures, called
'Ubuntu CI'. Part of that testing is to run all these tests. Sometimes these 'Ubuntu CI'. Part of that testing is to run all these tests. Sometimes these
tests are temporarily blacklisted from running in the 'autopkgtest' tests while tests are temporarily deny-listed from running in the 'autopkgtest' tests while
debugging a flaky test; that is done by creating a file in the test directory debugging a flaky test; that is done by creating a file in the test directory
named 'blacklist-ubuntu-ci', for example to prevent the TEST-01-BASIC test from named 'deny-list-ubuntu-ci', for example to prevent the TEST-01-BASIC test from
running in the 'autopkgtest' runs, create the file running in the 'autopkgtest' runs, create the file
'TEST-01-BASIC/blacklist-ubuntu-ci'. 'TEST-01-BASIC/deny-list-ubuntu-ci'.
The tests may be disabled only for specific archs, by creating a blacklist file The tests may be disabled only for specific archs, by creating a deny-list file
with the arch name at the end, e.g. with the arch name at the end, e.g.
'TEST-01-BASIC/blacklist-ubuntu-ci-arm64' to disable the TEST-01-BASIC test 'TEST-01-BASIC/deny-list-ubuntu-ci-arm64' to disable the TEST-01-BASIC test
only on test runs for the 'arm64' architecture. only on test runs for the 'arm64' architecture.
Note the arch naming is not from 'uname -m', it is Debian arch names: Note the arch naming is not from 'uname -m', it is Debian arch names:
https://wiki.debian.org/ArchitectureSpecificsMemo https://wiki.debian.org/ArchitectureSpecificsMemo
For PRs that fix a currently blacklisted test, the PR should include removal For PRs that fix a currently deny-listed test, the PR should include removal
of the blacklist file. of the deny-list file.