summaryrefslogtreecommitdiff
path: root/dev-libs/libgudev/files/libgudev-test-double.patch
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2023-09-05 22:24:31 +0100
committerV3n3RiX <venerix@koprulu.sector>2023-09-05 22:24:31 +0100
commit0234a4013e6d1821ab7db449aa7867d7141324a8 (patch)
tree5ab2ccf666de1127eec29b931b11e63b89b02392 /dev-libs/libgudev/files/libgudev-test-double.patch
parent44a22ab89258383202cae3037c3a5685aa903251 (diff)
gentoo auto-resync : 05:09:2023 - 22:24:31
Diffstat (limited to 'dev-libs/libgudev/files/libgudev-test-double.patch')
-rw-r--r--dev-libs/libgudev/files/libgudev-test-double.patch30
1 files changed, 0 insertions, 30 deletions
diff --git a/dev-libs/libgudev/files/libgudev-test-double.patch b/dev-libs/libgudev/files/libgudev-test-double.patch
deleted file mode 100644
index 5d0eb3dab18d..000000000000
--- a/dev-libs/libgudev/files/libgudev-test-double.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-From 6f0503b1930a0776ef45fa7bc87a87e9dc69dacf Mon Sep 17 00:00:00 2001
-From: Mike Gilbert <floppym@gentoo.org>
-Date: Sat, 21 Aug 2021 15:09:58 -0400
-Subject: [PATCH] Skip test-double if the fr_FR.UTF-8 locale is not available
-
-Bug: https://bugs.gentoo.org/809359
----
- tests/test-double.c | 6 +++++-
- 1 file changed, 5 insertions(+), 1 deletion(-)
-
-diff --git a/tests/test-double.c b/tests/test-double.c
-index 0092d8b..7ba3abe 100644
---- a/tests/test-double.c
-+++ b/tests/test-double.c
-@@ -54,7 +54,11 @@ test_double (void)
- int main(int argc, char **argv)
- {
- setlocale (LC_ALL, NULL);
-- setlocale (LC_NUMERIC, "fr_FR.UTF-8");
-+ if (!setlocale (LC_NUMERIC, "fr_FR.UTF-8"))
-+ /* Skip the test if fr_FR.UTF-8 is not available */
-+ /* https://mesonbuild.com/Unit-tests.html#skipped-tests-and-hard-errors */
-+ return 77;
-+
- g_test_init (&argc, &argv, NULL);
-
- g_test_add_func ("/gudev/double", test_double);
---
-2.33.0
-