3 # Copyright (C) 2009 Red Hat Inc.
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2 of the License, or
8 # (at your option) any later version.
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write to the Free Software
17 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 # Regression test for:
20 # https://bugzilla.redhat.com/show_bug.cgi?id=557655
21 # "guestfish number parsing should not use atoi, should support '0...' for octal and '0x...' for hexadecimal"
24 rm -f test.out test.err
27 ../fish/guestfish >> test.out 2>> test.err <<EOF
28 # set-memsize is just a convenient non-daemon function that
29 # takes a single integer argument.
36 set-memsize -1073741824
38 set-memsize 1073741823
41 # the following should all provoke error messages:
42 -set-memsize -9000000000000000
43 -set-memsize 9000000000000000
44 -set-memsize 0x900000000000
45 -set-memsize 07777770000000000000
51 ../fish/guestfish -N fs -m /dev/sda1 >> test.out 2>> test.err <<EOF
54 # truncate-size takes an Int64 argument
55 truncate-size /test 1234
57 truncate-size /test 0x4d2
59 truncate-size /test 02322
62 # should parse OK, but underlying filesystem will reject it:
63 -truncate-size /test 0x7fffffffffffffff
65 # larger than 64 bits, should be an error:
66 -truncate-size /test 0x10000000000000000
68 # these should all provoke parse errors:
69 -truncate-size /test ABC
70 -truncate-size /test 09
71 -truncate-size /test 123L
74 # If we are running with debugging enabled (or even if not), then
75 # other messages and warnings can end up in the test.err (stderr) log.
76 # Thus filter out only lines we expect. 'proc 200' is the procedure
77 # number of truncate_size.
79 grep -E 'set[-_]memsize|truncate[-_]size' test.err~ |
80 grep -Ev 'proc 200' > test.err
83 diff -u rhbz557655-expected.stdout test.out
84 diff -u rhbz557655-expected.stderr test.err
85 rm test.out test.err test1.img