Disable printf %a test since it has different output on FreeBSD

Fixes #1139
This commit is contained in:
ridiculousfish 2014-11-02 00:27:52 -07:00
parent 6cc64fc9e3
commit c33a3862cc
2 changed files with 2 additions and 2 deletions

View file

@ -1,7 +1,8 @@
printf "Hello %d %i %f %F %g %G\n" 1 2 3 4 5 6 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 "%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 %s\n" a hello
printf "%c%c%c\n" hello … o printf "%c%c%c\n" hello … o

View file

@ -1,6 +1,5 @@
Hello 1 2 3.000000 4.000000 5 6 Hello 1 2 3.000000 4.000000 5 6
a B 10 18446744073709551615 a B 10 18446744073709551615
0xep+0 0XFP+0
a hello a hello
h…o h…o
5.000000e+00 6.000000E+00 5.000000e+00 6.000000E+00