aboutsummaryrefslogtreecommitdiff
path: root/testsuite/bzcat.tests
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2009-07-18 03:41:29 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2009-07-18 03:41:29 +0200
commit7aca89a7a32a1e560c447952c28a8b1e7fb775fc (patch)
treeb988939ee5fc2cf2235847d5f04ba5887b185e05 /testsuite/bzcat.tests
parent73b71f381d24218cf6368364be723a7b5c9aeda9 (diff)
downloadbusybox-w32-7aca89a7a32a1e560c447952c28a8b1e7fb775fc.tar.gz
busybox-w32-7aca89a7a32a1e560c447952c28a8b1e7fb775fc.tar.bz2
busybox-w32-7aca89a7a32a1e560c447952c28a8b1e7fb775fc.zip
touch: implement -d --date (our own testsuite needs that)
function old new delta static.uname_longopts - 137 +137 touch_main 231 360 +129 static.touch_longopts - 32 +32 validate_tm_time - 28 +28 packed_usage 26616 26624 +8 date_main 687 686 -1 static.longopts 162 - -162 ------------------------------------------------------------------------------ (add/remove: 3/1 grow/shrink: 2/1 up/down: 334/-163) Total: 171 bytes Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'testsuite/bzcat.tests')
-rwxr-xr-xtestsuite/bzcat.tests4
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuite/bzcat.tests b/testsuite/bzcat.tests
index 0bc744244..78d74f229 100755
--- a/testsuite/bzcat.tests
+++ b/testsuite/bzcat.tests
@@ -32,9 +32,9 @@ prep() {
32check() { 32check() {
33 eval $2 >t_actual 2>&1 33 eval $2 >t_actual 2>&1
34 if $ECHO -ne "$expected" | cmp - t_actual; then 34 if $ECHO -ne "$expected" | cmp - t_actual; then
35 echo "$1: PASS" 35 echo "PASS: $1"
36 else 36 else
37 echo "$1: FAIL" 37 echo "FAIL: $1"
38 fi 38 fi
39} 39}
40 40