diff --git a/libcxx/test/std/language.support/support.runtime/ctime.pass.cpp b/libcxx/test/std/language.support/support.runtime/ctime.pass.cpp --- a/libcxx/test/std/language.support/support.runtime/ctime.pass.cpp +++ b/libcxx/test/std/language.support/support.runtime/ctime.pass.cpp @@ -20,12 +20,6 @@ #error CLOCKS_PER_SEC not defined #endif -#if TEST_STD_VER > 14 -#ifndef TIME_UTC -#error TIME_UTC not defined -#endif -#endif - int main(int, char**) { std::clock_t c = 0; diff --git a/libcxx/test/std/language.support/support.runtime/ctime.timespec.compile.pass.cpp b/libcxx/test/std/language.support/support.runtime/ctime.timespec.compile.pass.cpp --- a/libcxx/test/std/language.support/support.runtime/ctime.timespec.compile.pass.cpp +++ b/libcxx/test/std/language.support/support.runtime/ctime.timespec.compile.pass.cpp @@ -18,5 +18,9 @@ #include #include +#ifndef TIME_UTC +#error TIME_UTC not defined +#endif + std::timespec tmspec = {}; static_assert(std::is_same::value, "");