aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2013-05-27 13:39:03 -0500
committerRob Landley <rob@landley.net>2013-05-27 13:39:03 -0500
commit8d9b9ca3033a42ccdec43437747612b159e86fce (patch)
tree72e42aa1fe4c60979e3383b14a2a162b42612041
parentee492df7356dcfd3bf35e12d163ee4f6d0407236 (diff)
downloadtoybox-8d9b9ca3033a42ccdec43437747612b159e86fce.tar.gz
Tests for touch (needs more work).
-rwxr-xr-xscripts/test/touch.test24
1 files changed, 24 insertions, 0 deletions
diff --git a/scripts/test/touch.test b/scripts/test/touch.test
new file mode 100755
index 00000000..03ab8ce1
--- /dev/null
+++ b/scripts/test/touch.test
@@ -0,0 +1,24 @@
+#!/bin/bash
+
+[ -f testing.sh ] && . testing.sh
+
+#testing "name" "command" "result" "infile" "stdin"
+
+testing "touch" "touch walrus && [ -e walrus ] && echo yes" "yes\n" "" ""
+testing "touch 1 2 3" "touch one two three && rm one two three && echo yes" "yes\n" \
+ "" ""
+testing "touch -c" "touch -c walrus && [ -e walrus ] && echo yes" "yes\n" "" ""
+testing "touch -c missing" "touch -c warrus && [ ! -e warrus ] && echo yes" \
+ "yes\n" "" ""
+
+# This isn't testing fraction of a second because I dunno how to read it back
+
+testing "touch -d" \
+ "touch -d 2009-02-13T23:31:30.12Z walrus && date -r walrus +%s.%N" "1234567890\n" \
+ "" ""
+#testing "touch -t" "touch -t 200902132331.42
+#testing "touch -r"
+#testing "touch -a"
+#testing "touch -m"
+#testing "touch -am"
+rm walrus