X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=src%2Futil%2Ftest_strings.c;h=b66474934b19dbc2c2ba4a3d2c8aeefc622a6825;hb=f249a80a2b1e52b24969782e8afb30b86c373ae2;hp=839b81c0453864387c73d2dd7913cd45267d321d;hpb=70ef2c7616b29cbb91076ffb26148251d62eb351;p=oweals%2Fgnunet.git diff --git a/src/util/test_strings.c b/src/util/test_strings.c index 839b81c04..b66474934 100644 --- a/src/util/test_strings.c +++ b/src/util/test_strings.c @@ -1,6 +1,6 @@ /* This file is part of GNUnet. - (C) 2009 Christian Grothoff (and other contributing authors) + Copyright (C) 2009 GNUnet e.V. GNUnet is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published @@ -14,8 +14,8 @@ You should have received a copy of the GNU General Public License along with GNUnet; see the file COPYING. If not, write to the - Free Software Foundation, Inc., 59 Temple Place - Suite 330, - Boston, MA 02111-1307, USA. + Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + Boston, MA 02110-1301, USA. */ /** * @file util/test_strings.c @@ -108,9 +108,26 @@ main (int argc, char *argv[]) at.abs_value_us = 50000000000; bc = GNUNET_STRINGS_absolute_time_to_string (at); + GNUNET_assert (GNUNET_OK == - GNUNET_STRINGS_fancy_time_to_absolute (bc, &atx)); - GNUNET_assert (atx.abs_value_us == at.abs_value_us); + GNUNET_STRINGS_fancy_time_to_absolute (bc, &atx)); + + if (atx.abs_value_us != at.abs_value_us) + { +#ifdef WINDOWS + DWORD tzv; + TIME_ZONE_INFORMATION tzi; + tzv = GetTimeZoneInformation (&tzi); + if (TIME_ZONE_ID_INVALID != tzv) + { + atx.abs_value_us -= 1000LL * 1000LL * tzi.Bias * 60LL; + } + if (atx.abs_value_us == at.abs_value_us) + fprintf (stderr, + "WARNING: GNUNET_STRINGS_fancy_time_to_absolute() miscalculates timezone!\n"); +#endif + GNUNET_assert (0); + } GNUNET_log_skip (2, GNUNET_NO); b = GNUNET_STRINGS_to_utf8 ("TEST", 4, "unknown");