FreeBSD-main-amd64-build - Build #34003 - Failure

From: <jenkins-admin_at_FreeBSD.org>
Date: Sat, 13 Dec 2025 12:12:47 UTC
FreeBSD-main-amd64-build - Build #34003 (756712d745db207085f1fe87dc8258434ec2147d) - Failure

Build information: https://ci.FreeBSD.org/job/FreeBSD-main-amd64-build/34003/
Full change log: https://ci.FreeBSD.org/job/FreeBSD-main-amd64-build/34003/changes
Full build log: https://ci.FreeBSD.org/job/FreeBSD-main-amd64-build/34003/console

Status explanation:
"Failure" - the build is suspected being broken by the following changes
"Still Failing" - the build has not been fixed by the following changes and
                  this is a notification to note that these changes have
                  not been fully tested by the CI system

Change summaries:
(Those commits are likely but not certainly responsible)

148111d3775eb159d71a36e3a8b4c5c1bf53392c by novel:
bhyvectl: improve options error handling

bcc735cb710fb74d1fb5f7be3d37701343c58ccd by gbe:
mps(4): Fix a typo in a device message

3b6f9481a85600cf1f23a819c3afee30fcd4122f by gbe:
mmc(4): Fix a typo in a device debug message

a3950d70a499e120c67da884865486e8599229bd by gbe:
oce(4): Fix a typo in a device debug message

1df4d82bd17ebd7449a6b58c32b65a12269ca068 by gbe:
altq(4): Fix a typo in a source code comment

756712d745db207085f1fe87dc8258434ec2147d by gbe:
ng_hci(4): Fix a typo in a source code comment



The end of the build log:

[...truncated 69.20 MiB...]
/usr/src/contrib/googletest/googlemock/test/gmock-function-mocker_test.cc:94:16: note: overridden virtual function is here
   94 |   virtual bool TakesConst(const int x) = 0;
      |                ^
/usr/src/contrib/googletest/googlemock/test/gmock-function-mocker_test.cc:164:20: warning: 'OverloadedOnArgumentNumber' overrides a member function but is not marked 'override' [-Winconsistent-missing-override]
  164 |   MOCK_METHOD(int, OverloadedOnArgumentNumber, ());     // NOLINT
      |                    ^
/usr/src/contrib/googletest/googlemock/test/gmock-function-mocker_test.cc:96:15: note: overridden virtual function is here
   96 |   virtual int OverloadedOnArgumentNumber() = 0;
      |               ^
/usr/src/contrib/googletest/googlemock/test/gmock-function-mocker_test.cc:165:20: warning: 'OverloadedOnArgumentNumber' overrides a member function but is not marked 'override' [-Winconsistent-missing-override]
  165 |   MOCK_METHOD(int, OverloadedOnArgumentNumber, (int));  // NOLINT
      |                    ^
/usr/src/contrib/googletest/googlemock/test/gmock-function-mocker_test.cc:97:15: note: overridden virtual function is here
   97 |   virtual int OverloadedOnArgumentNumber(int n) = 0;
      |               ^
/usr/src/contrib/googletest/googlemock/test/gmock-function-mocker_test.cc:167:20: warning: 'OverloadedOnArgumentType' overrides a member function but is not marked 'override' [-Winconsistent-missing-override]
  167 |   MOCK_METHOD(int, OverloadedOnArgumentType, (int));    // NOLINT
      |                    ^
/usr/src/contrib/googletest/googlemock/test/gmock-function-mocker_test.cc:99:15: note: overridden virtual function is here
   99 |   virtual int OverloadedOnArgumentType(int n) = 0;
      |               ^
/usr/src/contrib/googletest/googlemock/test/gmock-function-mocker_test.cc:168:21: warning: 'OverloadedOnArgumentType' overrides a member function but is not marked 'override' [-Winconsistent-missing-override]
  168 |   MOCK_METHOD(char, OverloadedOnArgumentType, (char));  // NOLINT
      |                     ^
/usr/src/contrib/googletest/googlemock/test/gmock-function-mocker_test.cc:100:16: note: overridden virtual function is here
  100 |   virtual char OverloadedOnArgumentType(char c) = 0;
      |                ^
/usr/src/contrib/googletest/googlemock/test/gmock-function-mocker_test.cc:173:20: warning: 'TypeWithHole' overrides a member function but is not marked 'override' [-Winconsistent-missing-override]
  173 |   MOCK_METHOD(int, TypeWithHole, (int (*)()), ());  // NOLINT
      |                    ^
/usr/src/contrib/googletest/googlemock/test/gmock-function-mocker_test.cc:105:15: note: overridden virtual function is here
  105 |   virtual int TypeWithHole(int (*func)()) = 0;
      |               ^
/usr/src/contrib/googletest/googlemock/test/gmock-function-mocker_test.cc:174:20: warning: 'TypeWithComma' overrides a member function but is not marked 'override' [-Winconsistent-missing-override]
  174 |   MOCK_METHOD(int, TypeWithComma, ((const std::map<int, std::string>&)));
      |                    ^
/usr/src/contrib/googletest/googlemock/test/gmock-function-mocker_test.cc:106:15: note: overridden virtual function is here
  106 |   virtual int TypeWithComma(const std::map<int, std::string>& a_map) = 0;
      |               ^
/usr/src/contrib/googletest/googlemock/test/gmock-function-mocker_test.cc:175:20: warning: 'TypeWithTemplatedCopyCtor' overrides a member function but is not marked 'override' [-Winconsistent-missing-override]
  175 |   MOCK_METHOD(int, TypeWithTemplatedCopyCtor,
      |                    ^
/usr/src/contrib/googletest/googlemock/test/gmock-function-mocker_test.cc:107:15: note: overridden virtual function is here
  107 |   virtual int TypeWithTemplatedCopyCtor(const TemplatedCopyable<int>&) = 0;
      |               ^
/usr/src/contrib/googletest/googlemock/test/gmock-function-mocker_test.cc:178:30: warning: 'ReturnsFunctionPointer1' overrides a member function but is not marked 'override' [-Winconsistent-missing-override]
  178 |   MOCK_METHOD(int (*)(bool), ReturnsFunctionPointer1, (int), ());
      |                              ^
/usr/src/contrib/googletest/googlemock/test/gmock-function-mocker_test.cc:109:17: note: overridden virtual function is here
  109 |   virtual int (*ReturnsFunctionPointer1(int))(bool) = 0;
      |                 ^
/usr/src/contrib/googletest/googlemock/test/gmock-function-mocker_test.cc:179:23: warning: 'ReturnsFunctionPointer2' overrides a member function but is not marked 'override' [-Winconsistent-missing-override]
  179 |   MOCK_METHOD(fn_ptr, ReturnsFunctionPointer2, (int), ());
      |                       ^
/usr/src/contrib/googletest/googlemock/test/gmock-function-mocker_test.cc:111:18: note: overridden virtual function is here
  111 |   virtual fn_ptr ReturnsFunctionPointer2(int) = 0;
      |                  ^
--- all_subdir_lib/googletest/tests/gtest_main ---
--- googletest-death-test-test ---

make[6]: stopped making "all" in /usr/src/lib/googletest/tests/gtest_main

make[5]: stopped making "all" in /usr/src/lib/googletest/tests
--- all_subdir_lib/googletest/tests/gmock_main ---
/usr/src/contrib/googletest/googlemock/test/gmock-function-mocker_test.cc:214:16: warning: 'VoidReturning' overrides a member function but is not marked 'override' [-Winconsistent-missing-override]
  214 |   MOCK_METHOD1(VoidReturning, void(int n));  // NOLINT
      |                ^
/usr/src/contrib/googletest/googlemock/test/gmock-function-mocker_test.cc:83:16: note: overridden virtual function is here
   83 |   virtual void VoidReturning(int x) = 0;
      |                ^
/usr/src/contrib/googletest/googlemock/test/gmock-function-mocker_test.cc:216:16: warning: 'Nullary' overrides a member function but is not marked 'override' [-Winconsistent-missing-override]
  216 |   MOCK_METHOD0(Nullary, int());  // NOLINT
      |                ^
/usr/src/contrib/googletest/googlemock/test/gmock-function-mocker_test.cc:85:15: note: overridden virtual function is here
   85 |   virtual int Nullary() = 0;
      |               ^
/usr/src/contrib/googletest/googlemock/test/gmock-function-mocker_test.cc:219:16: warning: 'Unary' overrides a member function but is not marked 'override' [-Winconsistent-missing-override]
  219 |   MOCK_METHOD1(Unary, bool(int));                                  // NOLINT
      |                ^
/usr/src/contrib/googletest/googlemock/test/gmock-function-mocker_test.cc:86:16: note: overridden virtual function is here
   86 |   virtual bool Unary(int x) = 0;
      |                ^
/usr/src/contrib/googletest/googlemock/test/gmock-function-mocker_test.cc:220:16: warning: 'Binary' overrides a member function but is not marked 'override' [-Winconsistent-missing-override]
  220 |   MOCK_METHOD2(Binary, long(short, int));                          // NOLINT
      |                ^
/usr/src/contrib/googletest/googlemock/test/gmock-function-mocker_test.cc:87:16: note: overridden virtual function is here
   87 |   virtual long Binary(short x, int y) = 0;                     // NOLINT
      |                ^
/usr/src/contrib/googletest/googlemock/test/gmock-function-mocker_test.cc:221:17: warning: 'Decimal' overrides a member function but is not marked 'override' [-Winconsistent-missing-override]
  221 |   MOCK_METHOD10(Decimal, int(bool, char, short, int, long, float,  // NOLINT
      |                 ^
/usr/src/contrib/googletest/googlemock/test/gmock-function-mocker_test.cc:88:15: note: overridden virtual function is here
   88 |   virtual int Decimal(bool b, char c, short d, int e, long f,  // NOLINT
      |               ^
/usr/src/contrib/googletest/googlemock/test/gmock-function-mocker_test.cc:224:16: warning: 'TakesNonConstReference' overrides a member function but is not marked 'override' [-Winconsistent-missing-override]
  224 |   MOCK_METHOD1(TakesNonConstReference, bool(int&));  // NOLINT
      |                ^
/usr/src/contrib/googletest/googlemock/test/gmock-function-mocker_test.cc:92:16: note: overridden virtual function is here
   92 |   virtual bool TakesNonConstReference(int& n) = 0;  // NOLINT
      |                ^
/usr/src/contrib/googletest/googlemock/test/gmock-function-mocker_test.cc:225:16: warning: 'TakesConstReference' overrides a member function but is not marked 'override' [-Winconsistent-missing-override]
  225 |   MOCK_METHOD1(TakesConstReference, std::string(const int&));
      |                ^
/usr/src/contrib/googletest/googlemock/test/gmock-function-mocker_test.cc:93:23: note: overridden virtual function is here
   93 |   virtual std::string TakesConstReference(const int& n) = 0;
      |                       ^
/usr/src/contrib/googletest/googlemock/test/gmock-function-mocker_test.cc:226:16: warning: 'TakesConst' overrides a member function but is not marked 'override' [-Winconsistent-missing-override]
  226 |   MOCK_METHOD1(TakesConst, bool(const int));  // NOLINT
      |                ^
/usr/src/contrib/googletest/googlemock/test/gmock-function-mocker_test.cc:94:16: note: overridden virtual function is here
   94 |   virtual bool TakesConst(const int x) = 0;
      |                ^
/usr/src/contrib/googletest/googlemock/test/gmock-function-mocker_test.cc:233:16: warning: 'OverloadedOnArgumentNumber' overrides a member function but is not marked 'override' [-Winconsistent-missing-override]
  233 |   MOCK_METHOD0(OverloadedOnArgumentNumber, int());     // NOLINT
      |                ^
/usr/src/contrib/googletest/googlemock/test/gmock-function-mocker_test.cc:96:15: note: overridden virtual function is here
   96 |   virtual int OverloadedOnArgumentNumber() = 0;
      |               ^
/usr/src/contrib/googletest/googlemock/test/gmock-function-mocker_test.cc:234:16: warning: 'OverloadedOnArgumentNumber' overrides a member function but is not marked 'override' [-Winconsistent-missing-override]
  234 |   MOCK_METHOD1(OverloadedOnArgumentNumber, int(int));  // NOLINT
      |                ^
/usr/src/contrib/googletest/googlemock/test/gmock-function-mocker_test.cc:97:15: note: overridden virtual function is here
   97 |   virtual int OverloadedOnArgumentNumber(int n) = 0;
      |               ^
/usr/src/contrib/googletest/googlemock/test/gmock-function-mocker_test.cc:236:16: warning: 'OverloadedOnArgumentType' overrides a member function but is not marked 'override' [-Winconsistent-missing-override]
  236 |   MOCK_METHOD1(OverloadedOnArgumentType, int(int));    // NOLINT
      |                ^
/usr/src/contrib/googletest/googlemock/test/gmock-function-mocker_test.cc:99:15: note: overridden virtual function is here
   99 |   virtual int OverloadedOnArgumentType(int n) = 0;
      |               ^
/usr/src/contrib/googletest/googlemock/test/gmock-function-mocker_test.cc:237:16: warning: 'OverloadedOnArgumentType' overrides a member function but is not marked 'override' [-Winconsistent-missing-override]
  237 |   MOCK_METHOD1(OverloadedOnArgumentType, char(char));  // NOLINT
      |                ^
/usr/src/contrib/googletest/googlemock/test/gmock-function-mocker_test.cc:100:16: note: overridden virtual function is here
  100 |   virtual char OverloadedOnArgumentType(char c) = 0;
      |                ^
/usr/src/contrib/googletest/googlemock/test/gmock-function-mocker_test.cc:239:16: warning: 'OverloadedOnConstness' overrides a member function but is not marked 'override' [-Winconsistent-missing-override]
  239 |   MOCK_METHOD0(OverloadedOnConstness, int());         // NOLINT
      |                ^
/usr/src/contrib/googletest/googlemock/test/gmock-function-mocker_test.cc:102:15: note: overridden virtual function is here
  102 |   virtual int OverloadedOnConstness() = 0;
      |               ^
/usr/src/contrib/googletest/googlemock/test/gmock-function-mocker_test.cc:240:22: warning: 'OverloadedOnConstness' overrides a member function but is not marked 'override' [-Winconsistent-missing-override]
  240 |   MOCK_CONST_METHOD0(OverloadedOnConstness, char());  // NOLINT
      |                      ^
/usr/src/contrib/googletest/googlemock/test/gmock-function-mocker_test.cc:103:16: note: overridden virtual function is here
  103 |   virtual char OverloadedOnConstness() const = 0;
      |                ^
/usr/src/contrib/googletest/googlemock/test/gmock-function-mocker_test.cc:242:16: warning: 'TypeWithHole' overrides a member function but is not marked 'override' [-Winconsistent-missing-override]
  242 |   MOCK_METHOD1(TypeWithHole, int(int (*)()));  // NOLINT
      |                ^
/usr/src/contrib/googletest/googlemock/test/gmock-function-mocker_test.cc:105:15: note: overridden virtual function is here
  105 |   virtual int TypeWithHole(int (*func)()) = 0;
      |               ^
/usr/src/contrib/googletest/googlemock/test/gmock-function-mocker_test.cc:243:16: warning: 'TypeWithComma' overrides a member function but is not marked 'override' [-Winconsistent-missing-override]
  243 |   MOCK_METHOD1(TypeWithComma,
      |                ^
/usr/src/contrib/googletest/googlemock/test/gmock-function-mocker_test.cc:106:15: note: overridden virtual function is here
  106 |   virtual int TypeWithComma(const std::map<int, std::string>& a_map) = 0;
      |               ^
/usr/src/contrib/googletest/googlemock/test/gmock-function-mocker_test.cc:245:16: warning: 'TypeWithTemplatedCopyCtor' overrides a member function but is not marked 'override' [-Winconsistent-missing-override]
  245 |   MOCK_METHOD1(TypeWithTemplatedCopyCtor,
      |                ^
/usr/src/contrib/googletest/googlemock/test/gmock-function-mocker_test.cc:107:15: note: overridden virtual function is here
  107 |   virtual int TypeWithTemplatedCopyCtor(const TemplatedCopyable<int>&) = 0;
      |               ^
/usr/src/contrib/googletest/googlemock/test/gmock-function-mocker_test.cc:248:16: warning: 'ReturnsFunctionPointer1' overrides a member function but is not marked 'override' [-Winconsistent-missing-override]
  248 |   MOCK_METHOD1(ReturnsFunctionPointer1, int (*(int))(bool));
      |                ^
/usr/src/contrib/googletest/googlemock/test/gmock-function-mocker_test.cc:109:17: note: overridden virtual function is here
  109 |   virtual int (*ReturnsFunctionPointer1(int))(bool) = 0;
      |                 ^
/usr/src/contrib/googletest/googlemock/test/gmock-function-mocker_test.cc:249:16: warning: 'ReturnsFunctionPointer2' overrides a member function but is not marked 'override' [-Winconsistent-missing-override]
  249 |   MOCK_METHOD1(ReturnsFunctionPointer2, fn_ptr(int));
      |                ^
/usr/src/contrib/googletest/googlemock/test/gmock-function-mocker_test.cc:111:18: note: overridden virtual function is here
  111 |   virtual fn_ptr ReturnsFunctionPointer2(int) = 0;
      |                  ^
--- all_subdir_tests ---
--- flush ---

make[6]: stopped making "all" in /usr/src/tests/sys/fs/fusefs
--- forget ---

make[6]: stopped making "all" in /usr/src/tests/sys/fs/fusefs

make[5]: stopped making "all" in /usr/src/tests/sys/fs

make[4]: stopped making "all" in /usr/src/tests/sys

make[3]: stopped making "all" in /usr/src/tests

make[2]: stopped making "all" in /usr/src
--- all_subdir_lib ---
/usr/src/contrib/googletest/googlemock/test/gmock-function-mocker_test.cc:552:21: warning: 'Push' overrides a member function but is not marked 'override' [-Winconsistent-missing-override]
  552 |   MOCK_METHOD(void, Push, (const T& elem), ());
      |                     ^
/usr/obj/usr/src/amd64.amd64/tmp/usr/include/private/gtest/internal/gtest-internal.h:712:5: note: in instantiation of template class 'testing::gmock_function_mocker_test::MockStack<int>' requested here
  712 |     MakeAndRegisterTestInfo(
      |     ^
/usr/src/contrib/googletest/googlemock/test/gmock-function-mocker_test.cc:592:1: note: in instantiation of member function 'testing::internal::TypeParameterizedTest<testing::gmock_function_mocker_test::TemplateMockTest, testing::internal::TemplateSel<testing::gmock_function_mocker_test::TemplateMockTest_Works_Test>, testing::internal::Types<testing::gmock_function_mocker_test::MockStack<int>, testing::gmock_function_mocker_test::LegacyMockStack<int>>>::Register' requested here
  592 | TYPED_TEST(TemplateMockTest, Works) {
      | ^
/usr/obj/usr/src/amd64.amd64/tmp/usr/include/private/gtest/gtest-typed-test.h:215:31: note: expanded from macro 'TYPED_TEST'
  215 |                   CaseName)>::Register("",                                   \
      |                               ^
/usr/src/contrib/googletest/googlemock/test/gmock-function-mocker_test.cc:540:16: note: overridden virtual function is here
  540 |   virtual void Push(const T& value) = 0;
      |                ^
/usr/src/contrib/googletest/googlemock/test/gmock-function-mocker_test.cc:555:25: warning: 'GetTop' overrides a member function but is not marked 'override' [-Winconsistent-missing-override]
  555 |   MOCK_METHOD(const T&, GetTop, (), (const));
      |                         ^
/usr/src/contrib/googletest/googlemock/test/gmock-function-mocker_test.cc:544:20: note: overridden virtual function is here
  544 |   virtual const T& GetTop() const = 0;
      |                    ^
38 warnings generated.

make[6]: stopped making "all" in /usr/src/lib/googletest/tests/gmock_main
--- gmock-actions_test ---

make[6]: stopped making "all" in /usr/src/lib/googletest/tests/gmock_main

make[5]: stopped making "all" in /usr/src/lib/googletest/tests

make[4]: stopped making "all" in /usr/src/lib/googletest

make[3]: stopped making "all" in /usr/src/lib

make[2]: stopped making "all" in /usr/src
      199.85 real      1820.23 user       193.17 sys

make[1]: stopped making "buildworld" in /usr/src

make: stopped making "buildworld" in /usr/src
Build step 'Execute shell' marked build as failure
[WARNINGS]Skipping publisher since build result is FAILURE
FTP: Current build result is [FAILURE], not going to run.
[PostBuildScript] - [INFO] Executing post build scripts.
[PostBuildScript] - [INFO] Build does not have any of the results [SUCCESS]. Did not execute build step #0.
[PostBuildScript] - [INFO] Executing post build scripts.
[FreeBSD-main-amd64-build] $ /bin/sh -xe /tmp/jenkins17207819875310841326.sh
+ sh freebsd-ci/scripts/jail/clean.sh
clean jail FreeBSD-main-amd64-build
Checking for post-build
Performing post-build step
Checking if email needs to be generated
Email was triggered for: Failure - Any
Sending email for trigger: Failure - Any
Sending mail from default account using System Admin e-mail address