From 93e2054166e632eff795c050ae8e1c1dcda69dd3 Mon Sep 17 00:00:00 2001 From: Didier Raboud Date: Tue, 9 Aug 2016 18:11:16 +0200 Subject: [PATCH] Tests: Do not run the CUPS_EUC_JP test case on BSD/Hurd either, as glibc's iconv behavior is different than what the test expects. Bug-Debian: https://bugs.debian.org/662996 Patch-Name: test-i18n-nonlinux.patch Gbp-Pq: Name 0011-Tests-Do-not-run-the-CUPS_EUC_JP-test-case-on-BSD-Hu.patch --- cups/testi18n.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cups/testi18n.c b/cups/testi18n.c index 45e1cab..449670c 100644 --- a/cups/testi18n.c +++ b/cups/testi18n.c @@ -410,7 +410,7 @@ main(int argc, /* I - Argument Count */ puts("PASS"); } -#ifndef __linux +#if !defined(__linux__) && !defined(__GLIBC__) fputs("cupsCharsetToUTF8(CUPS_EUC_JP): ", stdout); strlcpy(legsrc, legdest, sizeof(legsrc));