mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-10 03:16:17 +01:00
Comment out a nonessential testcase which fails on HP-UX. (#136283, Jonas
2004-04-21 Matthias Clasen <mclasen@redhat.com> * tests/printf-test.c (main): Comment out a nonessential testcase which fails on HP-UX. (#136283, Jonas Jonsson)
This commit is contained in:
parent
ae0c9d95bb
commit
b65c56ffd6
@ -1,3 +1,8 @@
|
||||
2004-04-21 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* tests/printf-test.c (main): Comment out a nonessential testcase
|
||||
which fails on HP-UX. (#136283, Jonas Jonsson)
|
||||
|
||||
2004-04-15 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* tests/patterntest.c (main): Add tests for the empty pattern.
|
||||
|
@ -1,3 +1,8 @@
|
||||
2004-04-21 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* tests/printf-test.c (main): Comment out a nonessential testcase
|
||||
which fails on HP-UX. (#136283, Jonas Jonsson)
|
||||
|
||||
2004-04-15 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* tests/patterntest.c (main): Add tests for the empty pattern.
|
||||
|
@ -1,3 +1,8 @@
|
||||
2004-04-21 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* tests/printf-test.c (main): Comment out a nonessential testcase
|
||||
which fails on HP-UX. (#136283, Jonas Jonsson)
|
||||
|
||||
2004-04-15 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* tests/patterntest.c (main): Add tests for the empty pattern.
|
||||
|
@ -1,3 +1,8 @@
|
||||
2004-04-21 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* tests/printf-test.c (main): Comment out a nonessential testcase
|
||||
which fails on HP-UX. (#136283, Jonas Jonsson)
|
||||
|
||||
2004-04-15 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* tests/patterntest.c (main): Add tests for the empty pattern.
|
||||
|
@ -1,3 +1,8 @@
|
||||
2004-04-21 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* tests/printf-test.c (main): Comment out a nonessential testcase
|
||||
which fails on HP-UX. (#136283, Jonas Jonsson)
|
||||
|
||||
2004-04-15 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* tests/patterntest.c (main): Add tests for the empty pattern.
|
||||
|
@ -1,3 +1,8 @@
|
||||
2004-04-21 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* tests/printf-test.c (main): Comment out a nonessential testcase
|
||||
which fails on HP-UX. (#136283, Jonas Jonsson)
|
||||
|
||||
2004-04-15 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* tests/patterntest.c (main): Add tests for the empty pattern.
|
||||
|
@ -194,7 +194,9 @@ main (int argc,
|
||||
TEST (NULL, g_snprintf (buf, 128, "%-5s", "abc") == 5 && !strcmp (buf, "abc "));
|
||||
TEST (NULL, g_snprintf (buf, 128, "%5.2s", "abc") == 5 && !strcmp (buf, " ab"));
|
||||
TEST (NULL, g_snprintf (buf, 128, "%*s", 5, "abc") == 5 && !strcmp (buf, " abc"));
|
||||
#if 0 /* HP-UX doesn't get this right */
|
||||
TEST (NULL, g_snprintf (buf, 128, "%*s", -5, "abc") == 5 && !strcmp (buf, "abc "));
|
||||
#endif
|
||||
TEST (NULL, g_snprintf (buf, 128, "%*.*s", 5, 2, "abc") == 5 && !strcmp (buf, " ab"));
|
||||
|
||||
/* %n */
|
||||
|
Loading…
Reference in New Issue
Block a user