diff options
author | Dan Fandrich <dan@coneharvesters.com> | 2010-09-02 18:38:00 -0700 |
---|---|---|
committer | Denys Vlasenko <dvlasenk@redhat.com> | 2010-09-03 17:09:51 +0200 |
commit | eb2bf5b6bfd04f7e123d7561725b00f807486849 (patch) | |
tree | fe88db7e8ac340c4e8e1c9f3f62dee70e49021f5 /testsuite/printf.tests | |
parent | 2ab3acb2747f43892641176491b0a0c09f11f086 (diff) | |
download | busybox-w32-eb2bf5b6bfd04f7e123d7561725b00f807486849.tar.gz busybox-w32-eb2bf5b6bfd04f7e123d7561725b00f807486849.tar.bz2 busybox-w32-eb2bf5b6bfd04f7e123d7561725b00f807486849.zip |
Fix some test cases
The tar tests still don't pass, but at least now it's because of
a problem with Busybox and not the tests themselves.
Signed-off-by: Dan Fandrich <dan@coneharvesters.com>
Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
Diffstat (limited to 'testsuite/printf.tests')
-rwxr-xr-x | testsuite/printf.tests | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/testsuite/printf.tests b/testsuite/printf.tests index b48e293f4..9a3c87473 100755 --- a/testsuite/printf.tests +++ b/testsuite/printf.tests | |||
@@ -89,9 +89,9 @@ testing "printf understands %Ld" \ | |||
89 | 89 | ||
90 | testing "printf handles %d bad_input" \ | 90 | testing "printf handles %d bad_input" \ |
91 | "${bb}printf '%d\n' 1 - 2 bad 3 123bad 4 2>&1; echo \$?" \ | 91 | "${bb}printf '%d\n' 1 - 2 bad 3 123bad 4 2>&1; echo \$?" \ |
92 | "1\n""printf: -: invalid number\n""0\n"\ | 92 | "1\n""printf: invalid number '-'\n""0\n"\ |
93 | "2\n""printf: bad: invalid number\n""0\n"\ | 93 | "2\n""printf: invalid number 'bad'\n""0\n"\ |
94 | "3\n""printf: 123bad: invalid number\n""0\n"\ | 94 | "3\n""printf: invalid number '123bad'\n""0\n"\ |
95 | "4\n""1\n" \ | 95 | "4\n""1\n" \ |
96 | "" "" | 96 | "" "" |
97 | 97 | ||