Skip to content

Commit 97774b4

Browse files
committed
[libc++][TZDB] Renames incomplete.
The new name uses experimental which better conveys what it means.
1 parent 8a21d59 commit 97774b4

File tree

63 files changed

+79
-79
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

63 files changed

+79
-79
lines changed

libcxx/include/__chrono/convert_to_tm.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ _LIBCPP_HIDE_FROM_ABI _Tm __convert_to_tm(const _ChronoT& __value) {
173173
if (__value.hours().count() > std::numeric_limits<decltype(__result.tm_hour)>::max())
174174
std::__throw_format_error("Formatting hh_mm_ss, encountered an hour overflow");
175175
__result.tm_hour = __value.hours().count();
176-
# if !defined(_LIBCPP_HAS_NO_INCOMPLETE_TZDB)
176+
# if !defined(_LIBCPP_HAS_NO_EXPERIMENTAL_TZDB)
177177
} else if constexpr (same_as<_ChronoT, chrono::sys_info>) {
178178
// Has no time information.
179179
} else if constexpr (same_as<_ChronoT, chrono::local_info>) {

libcxx/include/__chrono/formatter.h

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ struct _LIBCPP_HIDE_FROM_ABI __time_zone {
205205

206206
template <class _Tp>
207207
_LIBCPP_HIDE_FROM_ABI __time_zone __convert_to_time_zone([[maybe_unused]] const _Tp& __value) {
208-
# if !defined(_LIBCPP_HAS_NO_INCOMPLETE_TZDB)
208+
# if !defined(_LIBCPP_HAS_NO_EXPERIMENTAL_TZDB)
209209
if constexpr (same_as<_Tp, chrono::sys_info>)
210210
return {__value.abbrev, __value.offset};
211211
else
@@ -417,7 +417,7 @@ _LIBCPP_HIDE_FROM_ABI constexpr bool __weekday_ok(const _Tp& __value) {
417417
return __value.weekday().ok();
418418
else if constexpr (__is_hh_mm_ss<_Tp>)
419419
return true;
420-
# if !defined(_LIBCPP_HAS_NO_INCOMPLETE_TZDB)
420+
# if !defined(_LIBCPP_HAS_NO_EXPERIMENTAL_TZDB)
421421
else if constexpr (same_as<_Tp, chrono::sys_info>)
422422
return true;
423423
else if constexpr (same_as<_Tp, chrono::local_info>)
@@ -463,7 +463,7 @@ _LIBCPP_HIDE_FROM_ABI constexpr bool __weekday_name_ok(const _Tp& __value) {
463463
return __value.weekday().ok();
464464
else if constexpr (__is_hh_mm_ss<_Tp>)
465465
return true;
466-
# if !defined(_LIBCPP_HAS_NO_INCOMPLETE_TZDB)
466+
# if !defined(_LIBCPP_HAS_NO_EXPERIMENTAL_TZDB)
467467
else if constexpr (same_as<_Tp, chrono::sys_info>)
468468
return true;
469469
else if constexpr (same_as<_Tp, chrono::local_info>)
@@ -509,7 +509,7 @@ _LIBCPP_HIDE_FROM_ABI constexpr bool __date_ok(const _Tp& __value) {
509509
return __value.ok();
510510
else if constexpr (__is_hh_mm_ss<_Tp>)
511511
return true;
512-
# if !defined(_LIBCPP_HAS_NO_INCOMPLETE_TZDB)
512+
# if !defined(_LIBCPP_HAS_NO_EXPERIMENTAL_TZDB)
513513
else if constexpr (same_as<_Tp, chrono::sys_info>)
514514
return true;
515515
else if constexpr (same_as<_Tp, chrono::local_info>)
@@ -555,7 +555,7 @@ _LIBCPP_HIDE_FROM_ABI constexpr bool __month_name_ok(const _Tp& __value) {
555555
return __value.month().ok();
556556
else if constexpr (__is_hh_mm_ss<_Tp>)
557557
return true;
558-
# if !defined(_LIBCPP_HAS_NO_INCOMPLETE_TZDB)
558+
# if !defined(_LIBCPP_HAS_NO_EXPERIMENTAL_TZDB)
559559
else if constexpr (same_as<_Tp, chrono::sys_info>)
560560
return true;
561561
else if constexpr (same_as<_Tp, chrono::local_info>)
@@ -891,7 +891,7 @@ struct formatter<chrono::hh_mm_ss<_Duration>, _CharT> : public __formatter_chron
891891
}
892892
};
893893

894-
# if !defined(_LIBCPP_HAS_NO_INCOMPLETE_TZDB)
894+
# if !defined(_LIBCPP_HAS_NO_EXPERIMENTAL_TZDB)
895895
template <__fmt_char_type _CharT>
896896
struct formatter<chrono::sys_info, _CharT> : public __formatter_chrono<_CharT> {
897897
public:
@@ -913,7 +913,7 @@ struct formatter<chrono::local_info, _CharT> : public __formatter_chrono<_CharT>
913913
return _Base::__parse(__ctx, __format_spec::__fields_chrono, __format_spec::__flags{});
914914
}
915915
};
916-
# endif // !defined(_LIBCPP_HAS_NO_INCOMPLETE_TZDB)
916+
# endif // !defined(_LIBCPP_HAS_NO_EXPERIMENTAL_TZDB)
917917

918918
#endif // if _LIBCPP_STD_VER >= 20
919919

libcxx/include/__chrono/leap_second.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
#include <version>
1616
// Enable the contents of the header only when libc++ was built with experimental features enabled.
17-
#if !defined(_LIBCPP_HAS_NO_INCOMPLETE_TZDB)
17+
#if !defined(_LIBCPP_HAS_NO_EXPERIMENTAL_TZDB)
1818

1919
# include <__chrono/duration.h>
2020
# include <__chrono/system_clock.h>
@@ -121,6 +121,6 @@ _LIBCPP_HIDE_FROM_ABI constexpr auto operator<=>(const leap_second& __x, const s
121121

122122
_LIBCPP_END_NAMESPACE_STD
123123

124-
#endif // !defined(_LIBCPP_HAS_NO_INCOMPLETE_TZDB)
124+
#endif // !defined(_LIBCPP_HAS_NO_EXPERIMENTAL_TZDB)
125125

126126
#endif // _LIBCPP___CHRONO_LEAP_SECOND_H

libcxx/include/__chrono/local_info.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
#include <version>
1616
// Enable the contents of the header only when libc++ was built with experimental features enabled.
17-
#if !defined(_LIBCPP_HAS_NO_INCOMPLETE_TZDB)
17+
#if !defined(_LIBCPP_HAS_NO_EXPERIMENTAL_TZDB)
1818

1919
# include <__chrono/sys_info.h>
2020
# include <__config>
@@ -45,6 +45,6 @@ struct local_info {
4545

4646
_LIBCPP_END_NAMESPACE_STD
4747

48-
#endif // !defined(_LIBCPP_HAS_NO_INCOMPLETE_TZDB)
48+
#endif // !defined(_LIBCPP_HAS_NO_EXPERIMENTAL_TZDB)
4949

5050
#endif // _LIBCPP___CHRONO_LOCAL_INFO_H

libcxx/include/__chrono/ostream.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ operator<<(basic_ostream<_CharT, _Traits>& __os, const hh_mm_ss<_Duration> __hms
264264
return __os << std::format(__os.getloc(), _LIBCPP_STATICALLY_WIDEN(_CharT, "{:L%T}"), __hms);
265265
}
266266

267-
# if !defined(_LIBCPP_HAS_NO_INCOMPLETE_TZDB)
267+
# if !defined(_LIBCPP_HAS_NO_EXPERIMENTAL_TZDB)
268268

269269
template <class _CharT, class _Traits>
270270
_LIBCPP_HIDE_FROM_ABI basic_ostream<_CharT, _Traits>&
@@ -302,7 +302,7 @@ operator<<(basic_ostream<_CharT, _Traits>& __os, const local_info& __info) {
302302
_LIBCPP_STATICALLY_WIDEN(_CharT, "{}: {{{}, {}}}"), __result(), __info.first, __info.second);
303303
}
304304

305-
# endif // !defined(_LIBCPP_HAS_NO_INCOMPLETE_TZDB)
305+
# endif // !defined(_LIBCPP_HAS_NO_EXPERIMENTAL_TZDB)
306306

307307
} // namespace chrono
308308

libcxx/include/__chrono/sys_info.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
#include <version>
1616
// Enable the contents of the header only when libc++ was built with experimental features enabled.
17-
#if !defined(_LIBCPP_HAS_NO_INCOMPLETE_TZDB)
17+
#if !defined(_LIBCPP_HAS_NO_EXPERIMENTAL_TZDB)
1818

1919
# include <__chrono/duration.h>
2020
# include <__chrono/system_clock.h>
@@ -46,6 +46,6 @@ struct sys_info {
4646

4747
_LIBCPP_END_NAMESPACE_STD
4848

49-
#endif // !defined(_LIBCPP_HAS_NO_INCOMPLETE_TZDB)
49+
#endif // !defined(_LIBCPP_HAS_NO_EXPERIMENTAL_TZDB)
5050

5151
#endif // _LIBCPP___CHRONO_SYS_INFO_H

libcxx/include/__chrono/time_zone.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
#include <version>
1616
// Enable the contents of the header only when libc++ was built with experimental features enabled.
17-
#if !defined(_LIBCPP_HAS_NO_INCOMPLETE_TZDB)
17+
#if !defined(_LIBCPP_HAS_NO_EXPERIMENTAL_TZDB)
1818

1919
# include <__chrono/duration.h>
2020
# include <__chrono/sys_info.h>
@@ -92,6 +92,6 @@ _LIBCPP_END_NAMESPACE_STD
9292

9393
_LIBCPP_POP_MACROS
9494

95-
#endif // !defined(_LIBCPP_HAS_NO_INCOMPLETE_TZDB)
95+
#endif // !defined(_LIBCPP_HAS_NO_EXPERIMENTAL_TZDB)
9696

9797
#endif // _LIBCPP___CHRONO_TIME_ZONE_H

libcxx/include/__chrono/time_zone_link.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
#include <version>
1616
// Enable the contents of the header only when libc++ was built with experimental features enabled.
17-
#if !defined(_LIBCPP_HAS_NO_INCOMPLETE_TZDB)
17+
#if !defined(_LIBCPP_HAS_NO_EXPERIMENTAL_TZDB)
1818

1919
# include <__compare/strong_order.h>
2020
# include <__config>
@@ -74,6 +74,6 @@ _LIBCPP_END_NAMESPACE_STD
7474

7575
_LIBCPP_POP_MACROS
7676

77-
#endif // !defined(_LIBCPP_HAS_NO_INCOMPLETE_TZDB)
77+
#endif // !defined(_LIBCPP_HAS_NO_EXPERIMENTAL_TZDB)
7878

7979
#endif // _LIBCPP___CHRONO_TIME_ZONE_LINK_H

libcxx/include/__chrono/tzdb.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
#include <version>
1616
// Enable the contents of the header only when libc++ was built with experimental features enabled.
17-
#if !defined(_LIBCPP_HAS_NO_INCOMPLETE_TZDB)
17+
#if !defined(_LIBCPP_HAS_NO_EXPERIMENTAL_TZDB)
1818

1919
# include <__algorithm/ranges_lower_bound.h>
2020
# include <__chrono/leap_second.h>
@@ -89,6 +89,6 @@ _LIBCPP_END_NAMESPACE_STD
8989

9090
_LIBCPP_POP_MACROS
9191

92-
#endif // !defined(_LIBCPP_HAS_NO_INCOMPLETE_TZDB)
92+
#endif // !defined(_LIBCPP_HAS_NO_EXPERIMENTAL_TZDB)
9393

9494
#endif // _LIBCPP___CHRONO_TZDB_H

libcxx/include/__chrono/tzdb_list.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
#include <version>
1616
// Enable the contents of the header only when libc++ was built with experimental features enabled.
17-
#if !defined(_LIBCPP_HAS_NO_INCOMPLETE_TZDB)
17+
#if !defined(_LIBCPP_HAS_NO_EXPERIMENTAL_TZDB)
1818

1919
# include <__availability>
2020
# include <__chrono/time_zone.h>
@@ -105,6 +105,6 @@ _LIBCPP_NODISCARD_EXT _LIBCPP_AVAILABILITY_TZDB _LIBCPP_EXPORTED_FROM_ABI string
105105

106106
_LIBCPP_END_NAMESPACE_STD
107107

108-
#endif // !defined(_LIBCPP_HAS_NO_INCOMPLETE_TZDB)
108+
#endif // !defined(_LIBCPP_HAS_NO_EXPERIMENTAL_TZDB)
109109

110110
#endif // _LIBCPP___CHRONO_TZDB_LIST_H

libcxx/include/__config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -421,7 +421,7 @@ _LIBCPP_HARDENING_MODE_DEBUG
421421
# if !defined(_LIBCPP_ENABLE_EXPERIMENTAL) && !defined(_LIBCPP_BUILDING_LIBRARY)
422422
# define _LIBCPP_HAS_NO_INCOMPLETE_PSTL
423423
# define _LIBCPP_HAS_NO_EXPERIMENTAL_STOP_TOKEN
424-
# define _LIBCPP_HAS_NO_INCOMPLETE_TZDB
424+
# define _LIBCPP_HAS_NO_EXPERIMENTAL_TZDB
425425
# define _LIBCPP_HAS_NO_EXPERIMENTAL_SYNCSTREAM
426426
# endif
427427

libcxx/test/libcxx/diagnostics/chrono.nodiscard_extensions.compile.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
// UNSUPPORTED: c++03, c++11, c++14, c++17
1313
// UNSUPPORTED: no-filesystem, no-localization, no-tzdb
1414

15-
// XFAIL: libcpp-has-no-incomplete-tzdb
15+
// XFAIL: libcpp-has-no-experimental-tzdb
1616
// XFAIL: availability-tzdb-missing
1717

1818
// <chrono>

libcxx/test/libcxx/diagnostics/chrono.nodiscard_extensions.verify.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
// UNSUPPORTED: c++03, c++11, c++14, c++17
1212
// UNSUPPORTED: no-filesystem, no-localization, no-tzdb
1313

14-
// XFAIL: libcpp-has-no-incomplete-tzdb
14+
// XFAIL: libcpp-has-no-experimental-tzdb
1515
// XFAIL: availability-tzdb-missing
1616

1717
// <chrono>

libcxx/test/libcxx/experimental/fexperimental-library.compile.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
# error "-fexperimental-library should enable the stop_token"
2525
#endif
2626

27-
#ifdef _LIBCPP_HAS_NO_INCOMPLETE_TZDB
27+
#ifdef _LIBCPP_HAS_NO_EXPERIMENTAL_TZDB
2828
# error "-fexperimental-library should enable the chrono TZDB"
2929
#endif
3030

libcxx/test/libcxx/time/time.zone/time.zone.db/leap_seconds.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
// UNSUPPORTED: c++03, c++11, c++14, c++17
1010
// UNSUPPORTED: no-filesystem, no-localization, no-tzdb
1111

12-
// XFAIL: libcpp-has-no-incomplete-tzdb
12+
// XFAIL: libcpp-has-no-experimental-tzdb
1313
// XFAIL: availability-tzdb-missing
1414

1515
// <chrono>

libcxx/test/libcxx/time/time.zone/time.zone.db/links.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
// UNSUPPORTED: c++03, c++11, c++14, c++17
1010
// UNSUPPORTED: no-filesystem, no-localization, no-tzdb
1111

12-
// XFAIL: libcpp-has-no-incomplete-tzdb
12+
// XFAIL: libcpp-has-no-experimental-tzdb
1313
// XFAIL: availability-tzdb-missing
1414

1515
// <chrono>

libcxx/test/libcxx/time/time.zone/time.zone.db/rules.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
// UNSUPPORTED: c++03, c++11, c++14, c++17
1010
// UNSUPPORTED: no-filesystem, no-localization, no-tzdb
1111

12-
// XFAIL: libcpp-has-no-incomplete-tzdb
12+
// XFAIL: libcpp-has-no-experimental-tzdb
1313
// XFAIL: availability-tzdb-missing
1414

1515
// <chrono>

libcxx/test/libcxx/time/time.zone/time.zone.db/time.zone.db.list/erase_after.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
// UNSUPPORTED: c++03, c++11, c++14, c++17
1010
// UNSUPPORTED: no-filesystem, no-localization, no-tzdb
1111

12-
// XFAIL: libcpp-has-no-incomplete-tzdb
12+
// XFAIL: libcpp-has-no-experimental-tzdb
1313
// XFAIL: availability-tzdb-missing
1414

1515
// <chrono>

libcxx/test/libcxx/time/time.zone/time.zone.db/time.zone.db.remote/reload_tzdb.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
// UNSUPPORTED: c++03, c++11, c++14, c++17
1010
// UNSUPPORTED: no-filesystem, no-localization, no-tzdb
1111

12-
// XFAIL: libcpp-has-no-incomplete-tzdb
12+
// XFAIL: libcpp-has-no-experimental-tzdb
1313
// XFAIL: availability-tzdb-missing
1414

1515
// <chrono>

libcxx/test/libcxx/time/time.zone/time.zone.db/time.zone.db.tzdb/locate_zone.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
// UNSUPPORTED: c++03, c++11, c++14, c++17
1010
// UNSUPPORTED: no-filesystem, no-localization, no-tzdb
1111

12-
// XFAIL: libcpp-has-no-incomplete-tzdb
12+
// XFAIL: libcpp-has-no-experimental-tzdb
1313
// XFAIL: availability-tzdb-missing
1414

1515
// <chrono>

libcxx/test/libcxx/time/time.zone/time.zone.db/version.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
// UNSUPPORTED: c++03, c++11, c++14, c++17
1010
// UNSUPPORTED: no-filesystem, no-localization, no-tzdb
1111

12-
// XFAIL: libcpp-has-no-incomplete-tzdb
12+
// XFAIL: libcpp-has-no-experimental-tzdb
1313
// XFAIL: availability-tzdb-missing
1414

1515
// <chrono>

libcxx/test/libcxx/time/time.zone/time.zone.db/zones.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
// UNSUPPORTED: c++03, c++11, c++14, c++17
1010
// UNSUPPORTED: no-filesystem, no-localization, no-tzdb
1111

12-
// XFAIL: libcpp-has-no-incomplete-tzdb
12+
// XFAIL: libcpp-has-no-experimental-tzdb
1313
// XFAIL: availability-tzdb-missing
1414

1515
// <chrono>

libcxx/test/libcxx/time/time.zone/time.zone.info/time.zone.info.local/ostream.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
// TODO FMT This test should not require std::to_chars(floating-point)
1313
// XFAIL: availability-fp_to_chars-missing
1414

15-
// XFAIL: libcpp-has-no-incomplete-tzdb
15+
// XFAIL: libcpp-has-no-experimental-tzdb
1616

1717
// <chrono>
1818

libcxx/test/libcxx/time/time.zone/time.zone.info/time.zone.info.sys/ostream.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
// TODO FMT This test should not require std::to_chars(floating-point)
1313
// XFAIL: availability-fp_to_chars-missing
1414

15-
// XFAIL: libcpp-has-no-incomplete-tzdb
15+
// XFAIL: libcpp-has-no-experimental-tzdb
1616

1717
// <chrono>
1818

libcxx/test/libcxx/time/time.zone/time.zone.timezone/time.zone.members/get_info.sys_time.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
// UNSUPPORTED: c++03, c++11, c++14, c++17
1010
// UNSUPPORTED: no-filesystem, no-localization, no-tzdb
1111

12-
// XFAIL: libcpp-has-no-incomplete-tzdb
12+
// XFAIL: libcpp-has-no-experimental-tzdb
1313
// XFAIL: availability-tzdb-missing
1414

1515
// <chrono>

libcxx/test/libcxx/time/time.zone/time.zone.timezone/time.zone.members/get_info.sys_time.rule_selection.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
// UNSUPPORTED: c++03, c++11, c++14, c++17
1010
// UNSUPPORTED: no-filesystem, no-localization, no-tzdb
1111

12-
// XFAIL: libcpp-has-no-incomplete-tzdb
12+
// XFAIL: libcpp-has-no-experimental-tzdb
1313
// XFAIL: availability-tzdb-missing
1414

1515
// <chrono>

libcxx/test/libcxx/transitive_includes.gen.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
{lit_header_restrictions.get(header, '')}
6565
6666
// TODO: Fix this test to make it work with localization or wide characters disabled
67-
// UNSUPPORTED{BLOCKLIT}: no-localization, no-wide-characters, no-threads, no-filesystem, libcpp-has-no-incomplete-tzdb, no-tzdb
67+
// UNSUPPORTED{BLOCKLIT}: no-localization, no-wide-characters, no-threads, no-filesystem, libcpp-has-no-experimental-tzdb, no-tzdb
6868
6969
// When built with modules, this test doesn't work because --trace-includes doesn't
7070
// report the stack of includes correctly.

libcxx/test/std/time/time.syn/formatter.local_info.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
// TODO FMT This test should not require std::to_chars(floating-point)
1313
// XFAIL: availability-fp_to_chars-missing
1414

15-
// XFAIL: libcpp-has-no-incomplete-tzdb
15+
// XFAIL: libcpp-has-no-experimental-tzdb
1616

1717
// REQUIRES: locale.fr_FR.UTF-8
1818

libcxx/test/std/time/time.syn/formatter.sys_info.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
// TODO FMT This test should not require std::to_chars(floating-point)
1212
// XFAIL: availability-fp_to_chars-missing
1313

14-
// XFAIL: libcpp-has-no-incomplete-tzdb
14+
// XFAIL: libcpp-has-no-experimental-tzdb
1515

1616
// REQUIRES: locale.fr_FR.UTF-8
1717
// REQUIRES: locale.ja_JP.UTF-8

libcxx/test/std/time/time.zone/time.zone.db/leap_seconds.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
// UNSUPPORTED: c++03, c++11, c++14, c++17
1010
// UNSUPPORTED: no-filesystem, no-localization, no-tzdb
1111

12-
// XFAIL: libcpp-has-no-incomplete-tzdb
12+
// XFAIL: libcpp-has-no-experimental-tzdb
1313
// XFAIL: availability-tzdb-missing
1414

1515
// <chrono>

libcxx/test/std/time/time.zone/time.zone.db/time.zone.db.access/current_zone.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
// UNSUPPORTED: c++03, c++11, c++14, c++17
1010
// UNSUPPORTED: no-filesystem, no-localization, no-tzdb
1111

12-
// XFAIL: libcpp-has-no-incomplete-tzdb
12+
// XFAIL: libcpp-has-no-experimental-tzdb
1313
// XFAIL: availability-tzdb-missing
1414

1515
// <chrono>

0 commit comments

Comments
 (0)