1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

time: fix timezone problems of parse_iso8601 (#7272)

This commit is contained in:
zakuro
2020-12-12 17:19:03 +09:00
committed by GitHub
parent 0aa9f5a007
commit 5fec0d785a
3 changed files with 55 additions and 50 deletions

View File

@@ -95,6 +95,14 @@ jobs:
run: ./v -o v2 cmd/v && ./v2 -o v3 cmd/v && ./v3 -o v4 cmd/v
- name: Fixed tests
run: ./v -silent test-fixed
- name: Test time functions in a timezone UTC-12
run: TZ=Etc/GMT+12 ./v test vlib/time/
- name: Test time functions in a timezone UTC-3
run: TZ=Etc/GMT+3 ./v test vlib/time/
- name: Test time functions in a timezone UTC+3
run: TZ=Etc/GMT-3 ./v test vlib/time/
- name: Test time functions in a timezone UTC+12
run: TZ=Etc/GMT-12 ./v test vlib/time/
- name: Test building v tools
run: ./v -silent build-tools
- name: v doctor