diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2017-03-11 15:19:10 -0500 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2017-03-11 15:19:10 -0500 |
commit | 74bd445d659bd619d76e109f7b02bb7714eed95f (patch) | |
tree | 74660ea96deedd74993b4e4e3a69f5430c4eb852 /tests.sh | |
parent | 486ddbcdd9281683ab1ade83c5c4a7aac8175aa7 (diff) | |
download | bfs-74bd445d659bd619d76e109f7b02bb7714eed95f.tar.xz |
tests: Run everything in UTC
Diffstat (limited to 'tests.sh')
-rwxr-xr-x | tests.sh | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -4,6 +4,7 @@ set -o physical umask 022 export LC_ALL=C +export TZ=UTC # The temporary directory that will hold our test data TMP="$(mktemp -d "${TMPDIR:-/tmp}"/bfs.XXXXXXXXXX)" @@ -977,7 +978,7 @@ function test_printf_escapes() { } function test_printf_times() { - TZ=UTC bfs_diff times -type f -printf '%p | %a %AY-%Am-%Ad %AH:%AI:%AS %T@ | %t %TY-%Tm-%Td %TH:%TI:%TS %T@\n' + bfs_diff times -type f -printf '%p | %a %AY-%Am-%Ad %AH:%AI:%AS %T@ | %t %TY-%Tm-%Td %TH:%TI:%TS %T@\n' } function test_printf_leak() { |