2020-02-04 15:05:21 +01:00
|
|
|
# This file contains a list of exceptions for rpmlint checker
|
|
|
|
|
|
|
|
# Zero-length
|
|
|
|
# Some test results can be zero-length files
|
2023-11-29 13:09:58 +01:00
|
|
|
addFilter(r'(zero-length|pem-certificate) /usr/share/mariadb-test/*')
|
2020-02-04 15:05:21 +01:00
|
|
|
|
|
|
|
# Permissions
|
|
|
|
# wsrep_sst_common
|
|
|
|
# It contains a parser of arguments for other sst scripts.
|
|
|
|
# It is meant to be sourced, not to be executed alone.
|
|
|
|
# So it correctly does not have shebang nor executable bit.
|
|
|
|
addFilter(r'non-executable-in-bin /usr/bin/wsrep_sst_common 644')
|
|
|
|
addFilter(r'script-without-shebang /usr/bin/wsrep_sst_common')
|
|
|
|
|
2021-08-20 09:33:43 +02:00
|
|
|
# Support both rpmlint 1.x and 2.x
|
2020-02-04 15:05:21 +01:00
|
|
|
# Wrong location
|
|
|
|
# wsrep_check_version is a wsrep version check utility. Used in testing only.
|
2023-11-29 13:09:58 +01:00
|
|
|
addFilter(r'arch-dependent-file-in-usr-share .* /usr/share/mariadb-test/lib/My/SafeProcess/wsrep_check_version')
|
|
|
|
addFilter(r'arch-dependent-file-in-usr-share /usr/share/mariadb-test/lib/My/SafeProcess/wsrep_check_version')
|
2020-02-04 15:05:21 +01:00
|
|
|
# my_safe_process is an utility that encapsulates process creation, monitoring and cleanup. Used in testing only.
|
2023-11-29 13:09:58 +01:00
|
|
|
addFilter(r'arch-dependent-file-in-usr-share .* /usr/share/mariadb-test/lib/My/SafeProcess/my_safe_process')
|
|
|
|
addFilter(r'arch-dependent-file-in-usr-share /usr/share/mariadb-test/lib/My/SafeProcess/my_safe_process')
|
2020-02-04 15:05:21 +01:00
|
|
|
# pam_mariadb_mtr.so is a pam module to test pam authentication plugin. Used in pam.test only.
|
2023-11-29 13:09:58 +01:00
|
|
|
addFilter(r'arch-dependent-file-in-usr-share .* /usr/share/mariadb-test/suite/plugins/pam/pam_mariadb_mtr.so')
|
|
|
|
addFilter(r'arch-dependent-file-in-usr-share /usr/share/mariadb-test/suite/plugins/pam/pam_mariadb_mtr.so')
|