Skip to content

Commit 267cdbe

Browse files
committed
Fix CI
1 parent 26e4eac commit 267cdbe

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

libcxx/test/libcxx/internal.zos.mbsnrtowcs.compile.pass.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
//
77
//===----------------------------------------------------------------------===//
88

9+
// REQUIRES: target={{.+}}-zos{{.*}}
10+
911
// Validating the following declaration of mbsnrtowcs resides in std::__locale::__ibm namespace.
1012
// size_t mbsnrtowcs(wchar_t*, const char**, size_t, size_t, mbstate_t*);
1113

libcxx/test/libcxx/internal.zos.wcsnrtombs.compile.pass.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
//
77
//===----------------------------------------------------------------------===//
88

9+
// REQUIRES: target={{.+}}-zos{{.*}}
10+
911
// Validating the following declaration of wcsnrtombs resides in std::__locale::__ibm namespace.
1012
// size_t wcsnrtombs(char*, const wchar_t**, size_t, size_t, mbstate_t*);
1113

libcxx/test/std/localization/locale.categories/category.ctype/locale.ctype.byname/ctype.cxx.pass.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ int main(int, char**) {
2424
char lower = 'a';
2525
char digit = '1';
2626
char xdigit = 'b';
27-
auto& CF = std::use_facet<std::ctype_byname<char>>(loc);
27+
auto& CF = std::use_facet<std::ctype_byname<char> >(loc);
2828
assert(CF.is(std::ctype_base::lower, lower));
2929
assert(CF.is(std::ctype_base::upper, upper));
3030
assert(CF.is(std::ctype_base::digit, digit));
@@ -60,7 +60,7 @@ int main(int, char**) {
6060
assert(std::iswpunct(wpunct));
6161
assert(std::iswxdigit(wxdigit));
6262

63-
auto& WF = std::use_facet<std::ctype_byname<wchar_t>>(loc);
63+
auto& WF = std::use_facet<std::ctype_byname<wchar_t> >(loc);
6464
assert(wlower == WF.tolower(wupper));
6565
assert(wupper == WF.toupper(wlower));
6666
}

0 commit comments

Comments
 (0)