diff options
author | Luke T. Shumaker <lukeshu@lukeshu.com> | 2025-04-05 21:33:39 -0600 |
---|---|---|
committer | Luke T. Shumaker <lukeshu@lukeshu.com> | 2025-04-05 21:33:39 -0600 |
commit | 7fe3755f3a3dc11f1371b2b104fe3cf357da2310 (patch) | |
tree | c78a645bfbb7a23691449f100dec90f9e5a79c42 | |
parent | ff88c4cc9bfdc91c3af390ab6a7588f5a8ade40a (diff) |
lib9p: runtest: The default timestamp is too far in the past now
-rwxr-xr-x | lib9p/tests/runtest | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib9p/tests/runtest b/lib9p/tests/runtest index a745f12..379ea6d 100755 --- a/lib9p/tests/runtest +++ b/lib9p/tests/runtest @@ -26,13 +26,13 @@ while [[ -d /proc/$server_pid && "$(readlink /proc/$server_pid/fd/4 2>/dev/null) out=$("${client[@]}" ls -l '') expect_lines \ - 'd-r-xr-xr-x M 0 root root 0 Oct 7 15:51 Documentation' \ - '--r--r--r-- M 0 root root 166 Oct 7 15:51 README.md' \ - '---w--w--w- M 0 root root 0 Oct 7 15:51 shutdown' + 'd-r-xr-xr-x M 0 root root 0 Oct 7 2024 Documentation' \ + '--r--r--r-- M 0 root root 166 Oct 7 2024 README.md' \ + '---w--w--w- M 0 root root 0 Oct 7 2024 shutdown' out=$("${client[@]}" ls -l 'Documentation/') expect_lines \ - '--r--r--r-- M 0 root root 166 Oct 7 15:51 x' + '--r--r--r-- M 0 root root 166 Oct 7 2024 x' out=$("${client[@]}" read 'README.md') expect_lines \ |