testing: freebsd [travis skip]
authorMichael Wallner <mike@php.net>
Tue, 27 Oct 2020 20:05:16 +0000 (21:05 +0100)
committerMichael Wallner <mike@php.net>
Tue, 27 Oct 2020 20:05:16 +0000 (21:05 +0100)
test/lib/ForkAndExec.cpp
test/tests/memcached/errors.cpp

index 48a8dc18bac36621cedfd50d7ef5f1ae9ae7df66..ac30dd0282195e4430019d61901bf9abd1078d0e 100644 (file)
@@ -107,7 +107,7 @@ void ForkAndExec::closePipe(int &fd) {
 }
 
 void ForkAndExec::pollExecReadyPipe() {
-#if __APPLE__ || __FreeBSD__
+#if __APPLE__
   char c, n = 50;
   do {
     if (0 == read(ready[mode::READ], &c, 1)) {
index c143b27fbf31c0ee0ecce983dedc26a291a20119..4b3b4684b692868fec178414ca109db50b2019fd 100644 (file)
@@ -23,11 +23,7 @@ TEST_CASE("memcached_errors") {
     REQUIRE_SUCCESS(memcached_set(memc, S("foo"), nullptr, 0, 0, 0));
     memcached_quit(memc);
 
-    test.cluster.stop(
-#if __FreeBSD__
-        true // graceful
-#endif
-        );
+    test.cluster.stop();
     Retry cluster_is_stopped{[&cluster = test.cluster]{
       return cluster.isStopped();
     }};