svn commit: trunk/busybox/testsuite/du
vda at busybox.net
vda at busybox.net
Wed Apr 23 07:02:02 UTC 2008
Author: vda
Date: 2008-04-23 00:02:02 -0700 (Wed, 23 Apr 2008)
New Revision: 21804
Log:
testsuite: fix du testsuite to not use changing directories
Modified:
trunk/busybox/testsuite/du/du-h-works
trunk/busybox/testsuite/du/du-k-works
trunk/busybox/testsuite/du/du-l-works
trunk/busybox/testsuite/du/du-m-works
trunk/busybox/testsuite/du/du-s-works
trunk/busybox/testsuite/du/du-works
Changeset:
Modified: trunk/busybox/testsuite/du/du-h-works
===================================================================
--- trunk/busybox/testsuite/du/du-h-works 2008-04-23 06:45:11 UTC (rev 21803)
+++ trunk/busybox/testsuite/du/du-h-works 2008-04-23 07:02:02 UTC (rev 21804)
@@ -1,4 +1,4 @@
-[ -n "$d" ] || d=..
+d=/bin
du -h "$d" > logfile.gnu
busybox du -h "$d" > logfile.bb
cmp logfile.gnu logfile.bb
Modified: trunk/busybox/testsuite/du/du-k-works
===================================================================
--- trunk/busybox/testsuite/du/du-k-works 2008-04-23 06:45:11 UTC (rev 21803)
+++ trunk/busybox/testsuite/du/du-k-works 2008-04-23 07:02:02 UTC (rev 21804)
@@ -1,4 +1,4 @@
-[ -n "$d" ] || d=..
+d=/bin
du -k "$d" > logfile.gnu
busybox du -k "$d" > logfile.bb
cmp logfile.gnu logfile.bb
Modified: trunk/busybox/testsuite/du/du-l-works
===================================================================
--- trunk/busybox/testsuite/du/du-l-works 2008-04-23 06:45:11 UTC (rev 21803)
+++ trunk/busybox/testsuite/du/du-l-works 2008-04-23 07:02:02 UTC (rev 21804)
@@ -1,4 +1,4 @@
-[ -n "$d" ] || d=..
+d=/bin
du -l "$d" > logfile.gnu
busybox du -l "$d" > logfile.bb
cmp logfile.gnu logfile.bb
Modified: trunk/busybox/testsuite/du/du-m-works
===================================================================
--- trunk/busybox/testsuite/du/du-m-works 2008-04-23 06:45:11 UTC (rev 21803)
+++ trunk/busybox/testsuite/du/du-m-works 2008-04-23 07:02:02 UTC (rev 21804)
@@ -1,4 +1,4 @@
-[ -n "$d" ] || d=..
+d=/bin
du -m "$d" > logfile.gnu
busybox du -m "$d" > logfile.bb
cmp logfile.gnu logfile.bb
Modified: trunk/busybox/testsuite/du/du-s-works
===================================================================
--- trunk/busybox/testsuite/du/du-s-works 2008-04-23 06:45:11 UTC (rev 21803)
+++ trunk/busybox/testsuite/du/du-s-works 2008-04-23 07:02:02 UTC (rev 21804)
@@ -1,4 +1,4 @@
-[ -n "$d" ] || d=..
+d=/bin
du -s "$d" > logfile.gnu
busybox du -s "$d" > logfile.bb
cmp logfile.gnu logfile.bb
Modified: trunk/busybox/testsuite/du/du-works
===================================================================
--- trunk/busybox/testsuite/du/du-works 2008-04-23 06:45:11 UTC (rev 21803)
+++ trunk/busybox/testsuite/du/du-works 2008-04-23 07:02:02 UTC (rev 21804)
@@ -1,4 +1,4 @@
-[ -n "$d" ] || d=..
+d=/bin
du "$d" > logfile.gnu
busybox du "$d" > logfile.bb
cmp logfile.gnu logfile.bb
More information about the busybox-cvs
mailing list