diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-07-19 09:27:19 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-07-19 09:27:19 +0000 |
commit | 2e157ddf9ecd9d58864425f0e87409ddc218df94 (patch) | |
tree | 18f415d4847897a12d790b545f94c32ae68c199c /testsuite | |
parent | bd28f6bf7f53ede8df39112d40cb52f2a3d00177 (diff) |
libbb: updated config_parse() from Vladimir
function old new delta
config_read 385 460 +75
runsvdir_main 1701 1716 +15
readit 331 338 +7
passwd_main 1049 1053 +4
parse_command 1504 1507 +3
decode_format_string 822 824 +2
bb__parsespent 117 119 +2
udhcp_get_option 221 222 +1
changepath 196 194 -2
parse_inittab 400 396 -4
nameif_main 683 679 -4
make_device 1176 1172 -4
config_open 48 40 -8
expand_main 698 689 -9
readcmd 1012 1002 -10
config_free_data 37 21 -16
SynchronizeFile 683 643 -40
sleep_main 474 362 -112
------------------------------------------------------------------------------
(add/remove: 0/0 grow/shrink: 8/10 up/down: 109/-209) Total: -100 bytes
Diffstat (limited to 'testsuite')
-rwxr-xr-x | testsuite/parse.tests | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/testsuite/parse.tests b/testsuite/parse.tests new file mode 100755 index 000000000..1b43f9c9f --- /dev/null +++ b/testsuite/parse.tests @@ -0,0 +1,64 @@ +#!/bin/sh + +# Copyright 2008 by Denys Vlasenko <vda.linux@googlemail.com> +# Licensed under GPL v2, see file LICENSE for details. + +. testing.sh + +NO_REDUCE=65536 +NO_TRIM=131072 +GREEDY=262144 + +# testing "description" "command" "result" "infile" "stdin" + +testing "mdev.conf" \ + "parse -n 4 -m 3 -f $GREEDY -" \ + "[sda][0:0][644][@echo @echo TEST]\n" \ + "-" \ + " sda 0:0 644 @echo @echo TEST # echo trap\n" + +testing "notrim" \ + "parse -n 4 -m 3 -f $(($GREEDY+$NO_TRIM)) -" \ + "[][sda][0:0][644 @echo @echo TEST ]\n" \ + "-" \ + " sda 0:0 644 @echo @echo TEST \n" + +FILE=__parse.fstab +cat >$FILE <<EOF +# +# Device Point System Options +#_______________________________________________________________ +/dev/hdb3 / ext2 defaults 1 0 + /dev/hdb1 /dosc hpfs ro 1 0 + /dev/fd0 /dosa vfat rw,user,noauto,nohide 0 0 + /dev/fd1 /dosb vfat rw,user,noauto,nohide 0 0 +# + /dev/cdrom /cdrom iso9660 ro,user,noauto,nohide 0 0 +/dev/hdb5 /redhat ext2 rw,root,noauto,nohide 0 0 #sssd + /dev/hdb6 /win2home ntfs rw,root,noauto,nohide 0 0# ssdsd +/dev/hdb7 /win2skul ntfs rw,root,noauto,nohide none 0 0 +none /dev/pts devpts gid=5,mode=620 0 0 + none /proc proc defaults 0 0 +EOF + +cat >$FILE.res <<EOF +[/dev/hdb3][/][ext2][defaults][1][0] +[/dev/hdb1][/dosc][hpfs][ro][1][0] +[/dev/fd0][/dosa][vfat][rw,user,noauto,nohide][0][0] +[/dev/fd1][/dosb][vfat][rw,user,noauto,nohide][0][0] +[/dev/cdrom][/cdrom][iso9660][ro,user,noauto,nohide][0][0] +[/dev/hdb5][/redhat][ext2][rw,root,noauto,nohide][0][0] +[/dev/hdb6][/win2home][ntfs][rw,root,noauto,nohide][0][0] +[/dev/hdb7][/win2skul][ntfs][rw,root,noauto,nohide][none][0] +[none][/dev/pts][devpts][gid=5,mode=620][0][0] +[none][/proc][proc][defaults][0][0] +EOF + +testing "polluted fstab" \ + "parse -n 6 -m 6 $FILE" \ + "`cat $FILE.res`\n" \ + "" \ + "" +rm -f $FILE $FILE.res + +exit $FAILCOUNT |