+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.
+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.
+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.
+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.
+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.
+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.
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 */