1/**
2 * Copyright (c) 2022 Huawei Device Co., Ltd.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at
6 *
7 *   http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
16#ifndef __TIMEGM_DATA_H__
17#define __TIMEGM_DATA_H__
18
19#include "time_test_data.h"
20
21static const struct time_test_time_struct test_timegm_data[] = {
22    {"Europe/London", 1659181214},
23    {"Europe/Moscow", 1659188414},
24    {"Europe/Ulyanovsk", 1659192014},
25    {"Europe/Belgrade", 1659184814},
26    {"Europe/Paris", 1659184814},
27    {"Europe/Astrakhan", 1659192014},
28    {"Europe/Sofia", 1659188414},
29    {"Europe/Samara", 1659192014},
30    {"Europe/Warsaw", 1659184814},
31    {"Europe/Kaliningrad", 1659184814},
32    {"Europe/Rome", 1659184814},
33    {"Europe/Bucharest", 1659188414},
34    {"Europe/Berlin", 1659184814},
35    {"Europe/Volgograd", 1659188414},
36    {"Europe/Madrid", 1659184814},
37    {"Africa/Johannesburg", 1659184814},
38    {"Australia/Adelaide", 1659211814},
39    {"Australia/Perth", 1659206414},
40    {"Australia/Darwin", 1659211814},
41    {"Australia/Lord_Howe", 1659215414},
42    {"Australia/Hobart", 1659213614},
43    {"Australia/Brisbane", 1659213614},
44    {"Australia/Sydney", 1659213614},
45    {"Australia/Melbourne", 1659213614},
46    {"Australia/Eucla", 1659209114},
47    {"America/Mexico_City", 1659159614},
48    {"America/Vancouver", 1659152414},
49    {"America/Toronto", 1659163214},
50    {"America/Denver", 1659156014},
51    {"America/Anchorage", 1659148814},
52    {"America/Edmonton", 1659156014},
53    {"America/Regina", 1659156014},
54    {"America/Halifax", 1659166814},
55    {"America/Cancun", 1659159614},
56    {"America/St_Johns", 1659168614},
57    {"America/New_York", 1659163214},
58    {"America/Chicago", 1659159614},
59    {"America/Los_Angeles", 1659152414},
60    {"Asia/Novokuznetsk", 1659202814},
61    {"Asia/Magadan", 1659217214},
62    {"Asia/Yangon", 1659201014},
63    {"Asia/Chita", 1659210014},
64    {"Asia/Irkutsk", 1659206414},
65    {"Asia/Macau", 1659206414},
66    {"Asia/Riyadh", 1659188414},
67    {"Asia/Taipei", 1659206414},
68    {"Asia/Manila", 1659206414},
69    {"Asia/Shanghai", 1659206414},
70    {"Asia/Kuching", 1659206414},
71    {"Asia/Tokyo", 1659210014},
72    {"Asia/Kolkata", 1659197414},
73    {"Asia/Ho_Chi_Minh", 1659202814},
74    {"Asia/Bangkok", 1659202814},
75    {"Asia/Krasnoyarsk", 1659202814},
76    {"Asia/Yekaterinburg", 1659195614},
77    {"Asia/Kuala_Lumpur", 1659206414},
78    {"Asia/Vladivostok", 1659213614},
79    {"Asia/Omsk", 1659199214},
80    {"Asia/Phnom_Penh", 1659202814},
81    {"Asia/Kamchatka", 1659220814},
82    {"Asia/Sakhalin", 1659217214},
83    {"Asia/Novosibirsk", 1659202814},
84    {"Asia/Hong_Kong", 1659206414},
85    {"Asia/Singapore", 1659206414},
86    {"Asia/Khandyga", 1659210014},
87    {"Asia/Vientiane", 1659202814},
88    {"Asia/Jakarta", 1659202814},
89    {"Asia/Seoul", 1659210014},
90    {"Asia/Urumqi", 1659199214},
91    {"Asia/Anadyr", 1659220814},
92    {"PST8PDT", 1659152414},
93    {"HST", 1659141614},
94
95};
96
97#endif