diff options
author | Elliott Hughes <enh@google.com> | 2018-05-03 15:09:14 -0700 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2018-05-06 10:23:22 -0500 |
commit | eee28e7b5851a6eb16f7969393d8c6292b1f8754 (patch) | |
tree | c740f8f098623e245fd00e689894b944fc2687f8 /tests | |
parent | 828fc9c8be7e68a901e4fe79504a67cb6c9c33e8 (diff) | |
download | toybox-eee28e7b5851a6eb16f7969393d8c6292b1f8754.tar.gz |
Support fractional seconds (and other time units) in `top -d`.
LTP uses `top -d 0.1`, which isn't convincingly useful, but general
support for other time units might be useful, and switching to xparsetime
addresses both at once.
Also fix 3169d948c049664bcf7216d4c4ae751881099d3e where I mistakenly
treated `rev` and `toys.optflags&FLAG_b` as interchangeable. (Without
this second fix, `top -b` looks fine but `top` is broken!)
Also fix xparsetime to reject input such as "monkey" or "1monkey".
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/top.test | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/top.test b/tests/top.test index 11eea33b..3c3b5977 100755 --- a/tests/top.test +++ b/tests/top.test @@ -5,3 +5,9 @@ #testing "name" "command" "result" "infile" "stdin" testing "batch termination" "top -b -n1 | tail -c 1" "\n" "" "" +testing "fractional seconds" "top -b -d 8.5 -n1 | tail -c 1" "\n" "" "" + +# These are unit tests of xparsetime. +testing "-d invalid input" "top -b -d monkey -n1 2>&1 >/dev/null" "top: Not a number 'monkey'\n" "" "" +testing "-d unknown suffix" "top -b -d 1u -n1 2>&1 >/dev/null" "top: Unknown suffix 'u'\n" "" "" +testing "-d suffix trailing junk" "top -b -d 1monkey -n1 2>&1 >/dev/null" "top: Unknown suffix 'monkey'\n" "" "" |