diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | tests/test-wchar-c++.cc | 5 |
2 files changed, 10 insertions, 0 deletions
@@ -1,5 +1,10 @@ 2017-05-05 Bruno Haible <bruno@clisp.org> + wchar-c++-tests: Update. + * tests/test-wchar-c++.cc (wcsftime): Declare, missing since 2017-04-30. + +2017-05-05 Bruno Haible <bruno@clisp.org> + utime-h-c++-tests: New module. * tests/test-utime-h-c++.cc: New file. (utime): Declare, missing since 2017-04-30. diff --git a/tests/test-wchar-c++.cc b/tests/test-wchar-c++.cc index f8bea0f76c..9dc552a4d7 100644 --- a/tests/test-wchar-c++.cc +++ b/tests/test-wchar-c++.cc @@ -211,6 +211,11 @@ SIGNATURE_CHECK (GNULIB_NAMESPACE::wcstok, wchar_t *, SIGNATURE_CHECK (GNULIB_NAMESPACE::wcswidth, int, (const wchar_t *, size_t)); #endif +#if GNULIB_TEST_WCSFTIME +SIGNATURE_CHECK (GNULIB_NAMESPACE::wcsftime, size_t, + (wchar_t *, size_t, const wchar_t *, const struct tm *)); +#endif + int main () |