diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-03-30 14:43:27 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-03-30 14:43:27 +0000 |
commit | eceecea568a483a3acec2d4c03228b39ae2d6501 (patch) | |
tree | 7faa56bbba59529be6f671026ae97bda84267917 /testsuite/tr | |
parent | 52a9db6bb874c9ce7a8b7e935ba3ebbefdf3f7d4 (diff) | |
download | busybox-eceecea568a483a3acec2d4c03228b39ae2d6501.tar.gz |
- fix bug where we did not reject invalid classes like '[[:alpha'
- debloat while at it:
text data bss dec hex filename
1554 0 19 1573 625 tr.o.oorig
1357 0 16 1373 55d tr.o
Diffstat (limited to 'testsuite/tr')
-rw-r--r-- | testsuite/tr/tr-d-alnum-works | 4 | ||||
-rw-r--r-- | testsuite/tr/tr-d-works | 2 | ||||
-rw-r--r-- | testsuite/tr/tr-rejects-wrong-class | 19 | ||||
-rw-r--r-- | testsuite/tr/tr-works | 4 |
4 files changed, 27 insertions, 2 deletions
diff --git a/testsuite/tr/tr-d-alnum-works b/testsuite/tr/tr-d-alnum-works new file mode 100644 index 000000000..d440f8f3b --- /dev/null +++ b/testsuite/tr/tr-d-alnum-works @@ -0,0 +1,4 @@ +echo testing | tr -d '[[:alnum:]]' > logfile.gnu +echo testing | busybox tr -d '[[:alnum:]]' > logfile.bb + +diff -u logfile.gnu logfile.bb diff --git a/testsuite/tr/tr-d-works b/testsuite/tr/tr-d-works index d939e8b0f..a86bfbdf9 100644 --- a/testsuite/tr/tr-d-works +++ b/testsuite/tr/tr-d-works @@ -1,4 +1,4 @@ echo testing | tr -d aeiou > logfile.gnu echo testing | busybox tr -d aeiou > logfile.bb -cmp logfile.gnu logfile.bb +diff -u logfile.gnu logfile.bb diff --git a/testsuite/tr/tr-rejects-wrong-class b/testsuite/tr/tr-rejects-wrong-class new file mode 100644 index 000000000..97539360d --- /dev/null +++ b/testsuite/tr/tr-rejects-wrong-class @@ -0,0 +1,19 @@ +echo t12esting | tr -d '[[:alpha:]]' > logfile.gnu +echo t12esting | tr -d '[:alpha:]' >> logfile.gnu +echo t12esting | tr -d '[[:alpha:]' >> logfile.gnu +echo t12esting | tr -d '[[:alpha:' >> logfile.gnu +echo t12esting | tr -d '[[:alpha' >> logfile.gnu +echo t12esting | tr -d '[:alpha:]' >> logfile.gnu +echo t12esting | tr -d '[:alpha:' >> logfile.gnu +echo t12esting | tr -d '[:alpha' >> logfile.gnu + +echo t12esting | busybox tr -d '[[:alpha:]]' > logfile.bb +echo t12esting | busybox tr -d '[:alpha:]' >> logfile.bb +echo t12esting | busybox tr -d '[[:alpha:]' >> logfile.bb +echo t12esting | busybox tr -d '[[:alpha:' >> logfile.bb +echo t12esting | busybox tr -d '[[:alpha' >> logfile.bb +echo t12esting | busybox tr -d '[:alpha:]' >> logfile.bb +echo t12esting | busybox tr -d '[:alpha:' >> logfile.bb +echo t12esting | busybox tr -d '[:alpha' >> logfile.bb + +diff -u logfile.gnu logfile.bb diff --git a/testsuite/tr/tr-works b/testsuite/tr/tr-works index 9b2e90e42..2c0a9d196 100644 --- a/testsuite/tr/tr-works +++ b/testsuite/tr/tr-works @@ -17,8 +17,10 @@ tr_test () run_tr " " '[:blank:]' 12 run_tr 'a b' '[= =]' X run_tr "[:" '[:' ab + run_tr " .,:" '[:punct:]' 12 + run_tr " .,:" '[:cntrl:]' 12 } bb= tr_test > logfile.gnu bb=busybox tr_test > logfile.bb -cmp logfile.gnu logfile.bb +diff -u logfile.gnu logfile.bb |