summaryrefslogtreecommitdiff
path: root/i/pc104/initrd/conf/busybox/testsuite/touch
diff options
context:
space:
mode:
Diffstat (limited to 'i/pc104/initrd/conf/busybox/testsuite/touch')
-rw-r--r--i/pc104/initrd/conf/busybox/testsuite/touch/touch-creates-file2
-rw-r--r--i/pc104/initrd/conf/busybox/testsuite/touch/touch-does-not-create-file2
-rw-r--r--i/pc104/initrd/conf/busybox/testsuite/touch/touch-touches-files-after-non-existent-file3
3 files changed, 7 insertions, 0 deletions
diff --git a/i/pc104/initrd/conf/busybox/testsuite/touch/touch-creates-file b/i/pc104/initrd/conf/busybox/testsuite/touch/touch-creates-file
new file mode 100644
index 0000000..4b49354
--- /dev/null
+++ b/i/pc104/initrd/conf/busybox/testsuite/touch/touch-creates-file
@@ -0,0 +1,2 @@
+busybox touch foo
+test -f foo
diff --git a/i/pc104/initrd/conf/busybox/testsuite/touch/touch-does-not-create-file b/i/pc104/initrd/conf/busybox/testsuite/touch/touch-does-not-create-file
new file mode 100644
index 0000000..8852592
--- /dev/null
+++ b/i/pc104/initrd/conf/busybox/testsuite/touch/touch-does-not-create-file
@@ -0,0 +1,2 @@
+busybox touch -c foo
+test ! -f foo
diff --git a/i/pc104/initrd/conf/busybox/testsuite/touch/touch-touches-files-after-non-existent-file b/i/pc104/initrd/conf/busybox/testsuite/touch/touch-touches-files-after-non-existent-file
new file mode 100644
index 0000000..a869ec2
--- /dev/null
+++ b/i/pc104/initrd/conf/busybox/testsuite/touch/touch-touches-files-after-non-existent-file
@@ -0,0 +1,3 @@
+touch -t 198001010000 bar
+busybox touch -c foo bar
+test x"`find bar -mtime -1`" = xbar