Home
last modified time | relevance | path

Searched refs:dt (Results 1 – 5 of 5) sorted by relevance

/busybox-1.35.0/testsuite/date/
Ddate-works1 dt=`busybox date`
3 dt=`echo "$dt" | sed 's/^[^ ][^ ][^ ] [^ ][^ ][^ ] [ 0123][0-9] [012][0-9]:[0-5][0-9]:[0-6][0-9] [A…
4 test x"$dt" = x"OK"
6 dt=`busybox date -d 1:2`
7 dt=`echo "$dt" | cut -b12-19`
8 test x"$dt" = x"01:02:00"
10 dt=`busybox date -d 1:2:3`
11 dt=`echo "$dt" | cut -b12-19`
12 test x"$dt" = x"01:02:03"
14 dt=`busybox date -d 1.2-3:4`
[all …]
Ddate-timezone4 dt=$(TZ=UTC0 busybox date -d '1999-1-2 3:4:5Z')
5 dt=$(echo "$dt" | cut -b1-19)
6 test x"$dt" = x"Sat Jan 2 03:04:05"
9 dt=$(TZ=UTC0 busybox date -d '1999-1-2 3:4:5 +0600')
10 dt=$(echo "$dt" | cut -b1-19)
11 test x"$dt" = x"Fri Jan 1 21:04:05"
14 dt=$(TZ=UTC0 busybox date -d '1999-1-2 3:4:5 -0600')
15 dt=$(echo "$dt" | cut -b1-19)
16 test x"$dt" = x"Sat Jan 2 09:04:05"
19 dt=$(TZ=GMT0BST,M3.5.0/1,M10.5.0/2 busybox date -d '2021-03-28 00:59:59 +0000')
[all …]
Ddate-works-16 dt=`busybox date -d 1:2 +%T`
7 test x"$dt" = x"01:02:00"
9 dt=`busybox date -d 1:2:3 +%T`
10 test x"$dt" = x"01:02:03"
22 #dt=`busybox date -d 1.2-3:4`
23 #test x"$hdt" = x"$dt"
26 #dt=`busybox date -d 1.2-3:4:5`
27 #test x"$hdt" = x"$dt"
30 #dt=`busybox date -d 1999.1.2-3:4`
31 #test x"$hdt" = x"$dt"
[all …]
/busybox-1.35.0/examples/var_service/ntpd/
Dntp.script13 dt=`date '+%Y-%m-%d %H:%M:%S'`
26 echo "$dt: $1"\
39 echo "$dt: $1"\
50 echo "$dt: $1"\
/busybox-1.35.0/miscutils/
Dcrond.c1070 long dt; in crond_main() local
1076 dt = (long)t2 - (long)t1; in crond_main()
1107 log5("wakeup dt=%ld", dt); in crond_main()
1108 if (dt < -60 * 60 || dt > 60 * 60) { in crond_main()
1109 bb_info_msg("time disparity of %ld minutes detected", dt / 60); in crond_main()
1111 } else if (dt > 0) { in crond_main()