From dba8041341d9520a1c78df81938d0dd7d3b8b008 Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Mon, 28 Oct 2019 23:55:18 -0500 Subject: Some basic stat tests. --- tests/stat.test | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100755 tests/stat.test (limited to 'tests/stat.test') diff --git a/tests/stat.test b/tests/stat.test new file mode 100755 index 00000000..7c97e5fd --- /dev/null +++ b/tests/stat.test @@ -0,0 +1,18 @@ +#!/bin/bash + +[ -f testing.sh ] && . testing.sh + +#testing "name" "command" "result" "infile" "stdin" + +TZ=utc touch -at 200001010101.01 file +testcmd "as echo" "-c hello file" "hello\n" "" "" +testcmd "lone %" "-c % file" "%\n" "" "" +testcmd "%% escapes" "-c '%% and %% then %%' file" "% and % then %\n" "" "" +testcmd "%unknown = ?" "-c %q% file" "?%\n" "" "" + +TZ=utc testcmd "%x" "-c %x file" "2000-01-01 01:01:01.000000000 +0000\n" "" "" +TZ=utc testcmd "%X" "-c %X file" "946688461\n" "" "" + +TZ=utc touch -mt 200002020202.02 file +TZ=utc testcmd "%y" "-c %y file" "2000-02-02 02:02:02.000000000 +0000\n" "" "" +TZ=utc testcmd "%Y" "-c %Y file" "949456922\n" "" "" -- cgit v1.2.3