diff options
author | Rob Landley <rob@landley.net> | 2014-09-20 13:09:14 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2014-09-20 13:09:14 -0500 |
commit | 387edf547eb09b27ca6d49772eb048d729f09cf4 (patch) | |
tree | 59d482f33735690cab6d90723393afa1e2c8dce5 /tests/touch.test | |
parent | d3df423a6cde0c6282658ff628574771d3824d71 (diff) | |
download | toybox-387edf547eb09b27ca6d49772eb048d729f09cf4.tar.gz toybox-387edf547eb09b27ca6d49772eb048d729f09cf4.tar.bz2 toybox-387edf547eb09b27ca6d49772eb048d729f09cf4.zip |
Move testsuite out of scripts/test into its own top level tests directory, and make ctrl-c kill "make test" more reliably.
Diffstat (limited to 'tests/touch.test')
-rwxr-xr-x | tests/touch.test | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/tests/touch.test b/tests/touch.test new file mode 100755 index 0000000..03ab8ce --- /dev/null +++ b/tests/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 |