File: timezone

package info (click to toggle)
diffutils 1%3A3.12-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 19,980 kB
  • sloc: ansic: 116,841; sh: 12,881; perl: 535; makefile: 233; sed: 16
file content (14 lines) | stat: -rwxr-xr-x 259 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh
# In diff 3.4 through 3.8, this would output the wrong timezone on Solaris.

. "${srcdir=.}/init.sh"; path_prepend_ ../src

fail=0

echo a >a || fail=1
case $(LC_ALL=C TZ=EST5 diff -u /dev/null a) in
  *' -0500'*) ;;
  *) fail=1 ;;
esac

Exit $fail