testing: memaslap still fails on cirrus/freebsd
authorMichael Wallner <mike@php.net>
Wed, 14 Oct 2020 10:45:56 +0000 (12:45 +0200)
committerMichael Wallner <mike@php.net>
Wed, 14 Oct 2020 10:45:56 +0000 (12:45 +0200)
test/tests/bin/memaslap.cpp

index 07830b409c9700ad25c58ae76f02c4e326803773..ccac5994c92fee83117df59b09aa878a7db13e76 100644 (file)
@@ -49,7 +49,9 @@ TEST_CASE("bin/memaslap") {
     for (const auto args : examples) {
       string output;
       INFO(args);
-      REQUIRE(sh.run("memaslap " + servers + args, output));
+      auto ok = sh.run("memaslap -b " + servers + args, output);
+      INFO(output);
+      REQUIRE(ok);
       REQUIRE_THAT(output, Contains("TPS"));
     }
   }