diff options
| -rw-r--r-- | meta/recipes-extended/logrotate/logrotate/0001-test-avoid-locale-dependent-errno-string.patch | 27 | ||||
| -rw-r--r-- | meta/recipes-extended/logrotate/logrotate_3.22.0.bb | 1 |
2 files changed, 28 insertions, 0 deletions
diff --git a/meta/recipes-extended/logrotate/logrotate/0001-test-avoid-locale-dependent-errno-string.patch b/meta/recipes-extended/logrotate/logrotate/0001-test-avoid-locale-dependent-errno-string.patch new file mode 100644 index 0000000000..efee91252d --- /dev/null +++ b/meta/recipes-extended/logrotate/logrotate/0001-test-avoid-locale-dependent-errno-string.patch | |||
| @@ -0,0 +1,27 @@ | |||
| 1 | From 04b21743980c4e236ca5e8de18173fbd3848573b Mon Sep 17 00:00:00 2001 | ||
| 2 | From: =?UTF-8?q?Christian=20G=C3=B6ttsche?= <cgzones@googlemail.com> | ||
| 3 | Date: Sat, 8 Jun 2024 17:59:40 +0200 | ||
| 4 | Subject: [PATCH] test: avoid locale dependent errno string | ||
| 5 | |||
| 6 | String representations of errno values are locale dependent, thus avoid | ||
| 7 | using them. | ||
| 8 | |||
| 9 | Upstream-Status: Backport [https://github.com/logrotate/logrotate/commit/04b21743980c4e236ca5e8de18173fbd3848573b] | ||
| 10 | Signed-off-by: Gyorgy Sarvari <skandigraun@gmail.com> | ||
| 11 | --- | ||
| 12 | test/test-0112.sh | 2 +- | ||
| 13 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
| 14 | |||
| 15 | diff --git a/test/test-0112.sh b/test/test-0112.sh | ||
| 16 | index 812632b..fa9eed6 100755 | ||
| 17 | --- a/test/test-0112.sh | ||
| 18 | +++ b/test/test-0112.sh | ||
| 19 | @@ -23,7 +23,7 @@ test_reg.log.1.gz 1 zero | ||
| 20 | test_reg.log.2.gz 1 first | ||
| 21 | EOF | ||
| 22 | |||
| 23 | -grep "test_fifo.log.1 (read-only) for compression: Operation not supported" error.log >/dev/null | ||
| 24 | +grep "^error: unable to open .*/test_fifo\.log\.1 (read-only) for compression: " error.log >/dev/null | ||
| 25 | if [ $? != 0 ]; then | ||
| 26 | echo "No error printed, but there should be one." | ||
| 27 | exit 3 | ||
diff --git a/meta/recipes-extended/logrotate/logrotate_3.22.0.bb b/meta/recipes-extended/logrotate/logrotate_3.22.0.bb index 5c4a0a9807..7995438408 100644 --- a/meta/recipes-extended/logrotate/logrotate_3.22.0.bb +++ b/meta/recipes-extended/logrotate/logrotate_3.22.0.bb | |||
| @@ -12,6 +12,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263" | |||
| 12 | 12 | ||
| 13 | SRC_URI = "${GITHUB_BASE_URI}/download/${PV}/${BP}.tar.xz \ | 13 | SRC_URI = "${GITHUB_BASE_URI}/download/${PV}/${BP}.tar.xz \ |
| 14 | file://run-ptest \ | 14 | file://run-ptest \ |
| 15 | file://0001-test-avoid-locale-dependent-errno-string.patch \ | ||
| 15 | " | 16 | " |
| 16 | 17 | ||
| 17 | SRC_URI[sha256sum] = "42b4080ee99c9fb6a7d12d8e787637d057a635194e25971997eebbe8d5e57618" | 18 | SRC_URI[sha256sum] = "42b4080ee99c9fb6a7d12d8e787637d057a635194e25971997eebbe8d5e57618" |
