changeset 837:3107c5525cc7

Change uuencode test to match what other uuencode implementations actually produce.
author Rob Landley <rob@landley.net>
date Thu, 28 Mar 2013 19:28:27 -0500
parents 97824b1523a8
children a60c572a8218
files scripts/test/uuencode.test
diffstat 1 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/test/uuencode.test	Wed Mar 27 22:34:28 2013 -0500
+++ b/scripts/test/uuencode.test	Thu Mar 28 19:28:27 2013 -0500
@@ -7,13 +7,13 @@
 testing "uuencode not enough args [fail]" "uuencode 2>/dev/null" "" "" ""
 
 testing "uuencode uu empty file" "uuencode test" \
-	"begin 744 test\n\`\nend\n" "" "" 
+	"begin 744 test\nend\n" "" "" 
 testing "uuencode uu 1-char" "uuencode test" \
-	"begin 744 test\n!80  \n\`\nend\n" "" "a" 
+	"begin 744 test\n!80\`\`\nend\n" "" "a" 
 testing "uuencode uu 2-char" "uuencode test" \
-	"begin 744 test\n\"86( \n\`\nend\n" "" "ab" 
+	"begin 744 test\n\"86(\`\nend\n" "" "ab" 
 testing "uuencode uu 3-char" "uuencode test" \
-	"begin 744 test\n#86)C\n\`\nend\n" "" "abc" 
+	"begin 744 test\n#86)C\nend\n" "" "abc" 
 
 testing "uuencode b64 empty file" "uuencode -m test" \
 	"begin-base64 744 test\n====\n" "" ""