aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2014-11-02 00:27:52 -0700
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2014-11-02 00:27:52 -0700
commitc33a3862ccc1e694ecf31f6d0b6cf1a45d6455f7 (patch)
tree1150d2680f20ff4b305f9806b5bcdff3496a1b85
parent6cc64fc9e383a138d8a668501d78871e1cbef93a (diff)
Disable printf %a test since it has different output on FreeBSD
Fixes #1139
-rw-r--r--tests/printf.in3
-rw-r--r--tests/printf.out1
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/printf.in b/tests/printf.in
index 402dafb7..06b9cbb4 100644
--- a/tests/printf.in
+++ b/tests/printf.in
@@ -1,7 +1,8 @@
printf "Hello %d %i %f %F %g %G\n" 1 2 3 4 5 6
printf "%x %X %o %llu\n" 10 11 8 -1
-printf "%a %A\n" 14 15
+# %a has OS-dependent output - see #1139
+#printf "%a %A\n" 14 15
printf "%c %s\n" a hello
printf "%c%c%c\n" hello … o
diff --git a/tests/printf.out b/tests/printf.out
index 8ec41404..04e0a94b 100644
--- a/tests/printf.out
+++ b/tests/printf.out
@@ -1,6 +1,5 @@
Hello 1 2 3.000000 4.000000 5 6
a B 10 18446744073709551615
-0xep+0 0XFP+0
a hello
h…o
5.000000e+00 6.000000E+00