Skip to content

Commit 90e23b6

Browse files
committed
torture: Make results-directory date format completion-friendly
The names of the per-test results directories are of the form 2019.11.29-20:42:19. This works, but the ":" characters make tab-based shell name completion a bit onerous because the user must remember to include a quote character somewhere before the first ":". This commit therefore changes the ":" characters to periods, as in 2019.12.01-20.48.01", which allows tab-based completion to work more naturally. Signed-off-by: Paul E. McKenney <[email protected]>
1 parent 59ee032 commit 90e23b6

File tree

1 file changed

+1
-1
lines changed
  • tools/testing/selftests/rcutorture/bin

1 file changed

+1
-1
lines changed

tools/testing/selftests/rcutorture/bin/kvm.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ TORTURE_TRUST_MAKE=""
3939
resdir=""
4040
configs=""
4141
cpus=0
42-
ds=`date +%Y.%m.%d-%H:%M:%S`
42+
ds=`date +%Y.%m.%d-%H.%M.%S`
4343
jitter="-1"
4444

4545
usage () {

0 commit comments

Comments
 (0)