Skip to content

Commit 5bba72f

Browse files
Fix the sed script
1 parent 3b772fd commit 5bba72f

File tree

72 files changed

+72
-72
lines changed

Some content is hidden

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

72 files changed

+72
-72
lines changed

libcxx/test/std/containers/associative/map/compare.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ TEST_CONSTEXPR_CXX26 bool test() {
5454
}
5555

5656
int main(int, char**) {
57-
assert(test());
57+
test();
5858
#if TEST_STD_VER >= 26
5959
static_assert(test());
6060
#endif

libcxx/test/std/containers/associative/map/get_allocator.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ TEST_CONSTEXPR_CXX26 bool test() {
3535
}
3636

3737
int main(int, char**) {
38-
assert(test());
38+
test();
3939
#if TEST_STD_VER >= 26
4040
static_assert(test());
4141
#endif

libcxx/test/std/containers/associative/map/incomplete_type.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ TEST_CONSTEXPR_CXX26 bool test() {
3838
}
3939

4040
int main(int, char**) {
41-
assert(test());
41+
test();
4242
#if TEST_STD_VER >= 26
4343
static_assert(test());
4444
#endif

libcxx/test/std/containers/associative/map/map.access/at.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ TEST_CONSTEXPR_CXX26 bool test() {
160160
}
161161

162162
int main(int, char**) {
163-
assert(test());
163+
test();
164164
#if TEST_STD_VER >= 26
165165
static_assert(test());
166166
#endif

libcxx/test/std/containers/associative/map/map.access/empty.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ TEST_CONSTEXPR_CXX26 bool test() {
4343
}
4444

4545
int main(int, char**) {
46-
assert(test());
46+
test();
4747
#if TEST_STD_VER >= 26
4848
static_assert(test());
4949
#endif

libcxx/test/std/containers/associative/map/map.access/index_key.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ TEST_CONSTEXPR_CXX26 bool test() {
142142
}
143143

144144
int main(int, char**) {
145-
assert(test());
145+
test();
146146
#if TEST_STD_VER >= 26
147147
static_assert(test());
148148
#endif

libcxx/test/std/containers/associative/map/map.access/index_rv_key.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ TEST_CONSTEXPR_CXX26 bool test() {
8383
}
8484

8585
int main(int, char**) {
86-
assert(test());
86+
test();
8787
#if TEST_STD_VER >= 26
8888
static_assert(test());
8989
#endif

libcxx/test/std/containers/associative/map/map.access/index_tuple.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ TEST_CONSTEXPR_CXX26 bool test() {
2929
}
3030

3131
int main(int, char**) {
32-
assert(test());
32+
test();
3333
#if TEST_STD_VER >= 26
3434
static_assert(test());
3535
#endif

libcxx/test/std/containers/associative/map/map.access/iterator.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ TEST_CONSTEXPR_CXX26 bool test() {
160160
}
161161

162162
int main(int, char**) {
163-
assert(test());
163+
test();
164164
#if TEST_STD_VER >= 26
165165
static_assert(test());
166166
#endif

libcxx/test/std/containers/associative/map/map.access/max_size.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ TEST_CONSTEXPR_CXX26 bool test() {
4848
}
4949

5050
int main(int, char**) {
51-
assert(test());
51+
test();
5252
#if TEST_STD_VER >= 26
5353
static_assert(test());
5454
#endif

0 commit comments

Comments
 (0)