timezone fixed at UTC

git-svn-id: file:///svn/unbound/trunk@2185 be551aaa-1e26-0410-a405-d3ace91eadb9
This commit is contained in:
Wouter Wijngaards 2010-07-06 10:18:24 +00:00
parent c188d259d6
commit 7d9caee481
2 changed files with 4 additions and 4 deletions

View file

@ -968,17 +968,17 @@ void testbound_selftest(void)
free(v);
v = macro_process(store, NULL, "it is ${ctime 123456}");
log_assert( v && strcmp(v, "it is Fri Jan 2 11:17:36 1970") == 0);
log_assert( v && strcmp(v, "it is Fri Jan 2 10:17:36 1970") == 0);
free(v);
r = macro_assign(store, "t1", "123456");
log_assert(r);
v = macro_process(store, NULL, "it is ${ctime ${$t1}}");
log_assert( v && strcmp(v, "it is Fri Jan 2 11:17:36 1970") == 0);
log_assert( v && strcmp(v, "it is Fri Jan 2 10:17:36 1970") == 0);
free(v);
v = macro_process(store, NULL, "it is ${ctime $t1}");
log_assert( v && strcmp(v, "it is Fri Jan 2 11:17:36 1970") == 0);
log_assert( v && strcmp(v, "it is Fri Jan 2 10:17:36 1970") == 0);
free(v);
r = macro_assign(store, "x", "1");

View file

@ -264,7 +264,7 @@ main(int argc, char* argv[])
struct replay_scenario* scen = NULL;
/* we do not want the test to depend on the timezone */
setenv("TZ", "GMT-1", 1);
(void)setenv("TZ", "UTC", 1);
log_init(NULL, 0, NULL);
log_info("Start of %s testbound program.", PACKAGE_STRING);