summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenys Vlasenko2022-08-22 15:57:57 +0200
committerDenys Vlasenko2022-08-22 15:57:57 +0200
commit0011a6bc2024ec4ee6d8edea203524e758d67833 (patch)
treeab59ddb1493e100ebd203609d9e91f2d633c3b6f
parentf318adaaab3288fe72cb853bf7ede56790a13182 (diff)
downloadbusybox-0011a6bc2024ec4ee6d8edea203524e758d67833.zip
busybox-0011a6bc2024ec4ee6d8edea203524e758d67833.tar.gz
xxd: add two more testcases
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rwxr-xr-xtestsuite/xxd.tests18
1 files changed, 16 insertions, 2 deletions
diff --git a/testsuite/xxd.tests b/testsuite/xxd.tests
index 359e7f8..2c740ab 100755
--- a/testsuite/xxd.tests
+++ b/testsuite/xxd.tests
@@ -40,10 +40,24 @@ testing 'xxd -p -r' \
testing 'xxd -r skips leading whitespace and truncates at two spaces' \
'xxd -r' \
'0123456789:;<=>?@' \
- '' \
-"\
+ '' "\
00000000: 3031 3233 3435 3637 3839 3a3b 3c3d 3e3f 0123456789:;<=>?
00000010: 40 @
"
+testing 'xxd -p -r skips one bad char, truncates at two bad chars' \
+ 'xxd -p -r' \
+ '01' \
+ '' "\
+30 !31 !!32
+"
+
+testing 'xxd -p -r ignores the nibble with 2nd char bad' \
+ 'xxd -p -r' \
+ '3C6' \
+ '' "\
+33 3!4 3!!5
+36
+"
+
exit $FAILCOUNT