summaryrefslogtreecommitdiff
path: root/busybox/testsuite/ls
diff options
context:
space:
mode:
authornobody2004-10-13 09:42:10 +0000
committernobody2004-10-13 09:42:10 +0000
commit8c59a0bf0e9e2d87b0ff273ea3f0bf05bbbf6373 (patch)
tree1826706cd4fd009fcd14f4f8021005ec8ec0fa59 /busybox/testsuite/ls
downloadbusybox-8c59a0bf0e9e2d87b0ff273ea3f0bf05bbbf6373.zip
busybox-8c59a0bf0e9e2d87b0ff273ea3f0bf05bbbf6373.tar.gz
This commit was manufactured by cvs2svn to create tag 'busybox_1_00'.
Diffstat (limited to 'busybox/testsuite/ls')
-rw-r--r--busybox/testsuite/ls/ls-1-works4
-rw-r--r--busybox/testsuite/ls/ls-h-works4
-rw-r--r--busybox/testsuite/ls/ls-l-works4
-rw-r--r--busybox/testsuite/ls/ls-s-works4
4 files changed, 16 insertions, 0 deletions
diff --git a/busybox/testsuite/ls/ls-1-works b/busybox/testsuite/ls/ls-1-works
new file mode 100644
index 0000000..8ad484f
--- /dev/null
+++ b/busybox/testsuite/ls/ls-1-works
@@ -0,0 +1,4 @@
+[ -n "$d" ] || d=..
+ls -1 "$d" > logfile.gnu
+busybox ls -1 "$d" > logfile.bb
+cmp logfile.gnu logfile.bb
diff --git a/busybox/testsuite/ls/ls-h-works b/busybox/testsuite/ls/ls-h-works
new file mode 100644
index 0000000..7331262
--- /dev/null
+++ b/busybox/testsuite/ls/ls-h-works
@@ -0,0 +1,4 @@
+[ -n "$d" ] || d=..
+ls -h "$d" > logfile.gnu
+busybox ls -h "$d" > logfile.bb
+cmp logfile.gnu logfile.bb
diff --git a/busybox/testsuite/ls/ls-l-works b/busybox/testsuite/ls/ls-l-works
new file mode 100644
index 0000000..ae5141d
--- /dev/null
+++ b/busybox/testsuite/ls/ls-l-works
@@ -0,0 +1,4 @@
+[ -n "$d" ] || d=..
+ls -l "$d" > logfile.gnu
+busybox ls -l "$d" > logfile.bb
+cmp logfile.gnu logfile.bb
diff --git a/busybox/testsuite/ls/ls-s-works b/busybox/testsuite/ls/ls-s-works
new file mode 100644
index 0000000..d82f328
--- /dev/null
+++ b/busybox/testsuite/ls/ls-s-works
@@ -0,0 +1,4 @@
+[ -n "$d" ] || d=..
+ls -1s "$d" > logfile.gnu
+busybox ls -1s "$d" > logfile.bb
+cmp logfile.gnu logfile.bb