From 336c44adca1768ada1e1e2f4d7dbbc33e994e582 Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Wed, 2 Mar 2016 15:20:04 -0600 Subject: Factor out command name at the start of test name, have runtest.sh print it. --- tests/uuencode.test | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'tests/uuencode.test') diff --git a/tests/uuencode.test b/tests/uuencode.test index 7c19faa3..b2a61dc1 100755 --- a/tests/uuencode.test +++ b/tests/uuencode.test @@ -4,23 +4,23 @@ #testing "name" "command" "result" "infile" "stdin" -testing "uuencode not enough args [fail]" "uuencode 2>/dev/null" "" "" "" +testing "not enough args [fail]" "uuencode 2>/dev/null" "" "" "" -testing "uuencode uu empty file" "uuencode test" \ +testing "uu empty file" "uuencode test" \ "begin 744 test\nend\n" "" "" -testing "uuencode uu 1-char" "uuencode test" \ +testing "uu 1-char" "uuencode test" \ "begin 744 test\n!80\`\`\nend\n" "" "a" -testing "uuencode uu 2-char" "uuencode test" \ +testing "uu 2-char" "uuencode test" \ "begin 744 test\n\"86(\`\nend\n" "" "ab" -testing "uuencode uu 3-char" "uuencode test" \ +testing "uu 3-char" "uuencode test" \ "begin 744 test\n#86)C\nend\n" "" "abc" -testing "uuencode b64 empty file" "uuencode -m test" \ +testing "b64 empty file" "uuencode -m test" \ "begin-base64 744 test\n====\n" "" "" -testing "uuencode b64 1-char" "uuencode -m test" \ +testing "b64 1-char" "uuencode -m test" \ "begin-base64 744 test\nYQ==\n====\n" "" "a" -testing "uuencode b64 2-char" "uuencode -m test" \ +testing "b64 2-char" "uuencode -m test" \ "begin-base64 744 test\nYWI=\n====\n" "" "ab" -testing "uuencode b64 3-char" "uuencode -m test" \ +testing "b64 3-char" "uuencode -m test" \ "begin-base64 744 test\nYWJj\n====\n" "" "abc" -- cgit v1.2.3