projects
/
awesomized
/
libmemcached
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
|
github
raw
|
patch
| inline |
side by side
(parent:
c750390
)
testing: be less picky when testing test/lib/Connection
author
Michael Wallner
<mike@php.net>
Wed, 2 Dec 2020 08:56:03 +0000
(09:56 +0100)
committer
Michael Wallner
<mike@php.net>
Wed, 2 Dec 2020 08:56:03 +0000
(09:56 +0100)
test/tests/lib.cpp
patch
|
blob
|
history
diff --git
a/test/tests/lib.cpp
b/test/tests/lib.cpp
index 2c3e0bd0e918bf5140c49865b8d4a1987673543a..7d6143bd210d0b2c3212f5b5dc8cf3295c022bfc 100644
(file)
--- a/
test/tests/lib.cpp
+++ b/
test/tests/lib.cpp
@@
-80,7
+80,7
@@
TEST_CASE("lib/Connection") {
vector<Connection> conns;
conns.reserve(cluster.getServers().size());
for (const auto &server : cluster.getServers()) {
-
REQUIRE
(conns.emplace_back(Connection{server.getSocketOrPort()}).open());
+
CHECK_NOFAIL
(conns.emplace_back(Connection{server.getSocketOrPort()}).open());
}
while (!conns.empty()) {
vector<Connection> again;