WEDNESDAY, MAY 13, 2026
libstdc++
Add call to test_format in std/time/clock/local/io.cc
This change adds a missing call to `test_format` in a libstdc++ test file.
The test_format function in std/time/clock/local/io.cc was defined but never called. This commit adds the missing call, ensuring the test case is properly executed.
In Details
This commit adds a call to test_format in libstdc++'s std/time/clock/local/io.cc test file, which was previously not being called. This ensures the format testing is executed.
For Context
This commit relates to the C++ standard library's time zone support. It fixes a test case by adding a missing function call. This ensures that the test suite properly exercises the library's formatting capabilities and validates its behavior.