From: Adam Emerson Date: Mon, 10 Feb 2025 21:01:38 +0000 (-0500) Subject: tests/ceph_timer: Fix link error that keeps showing up X-Git-Tag: testing/wip-vshankar-testing-20250213.045228~6^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=7b185ecaaf7ae57c1ad71dcf99fbba0c0d4bf313;p=ceph-ci.git tests/ceph_timer: Fix link error that keeps showing up We keep hitting link errors from GTest trying to print the values and iostreams for `` being flaky. Just make it a straight up `EXPECT_TRUE` so it stops breaking differently on different platforms. Signed-off-by: Adam Emerson --- diff --git a/src/test/common/test_ceph_timer.cc b/src/test/common/test_ceph_timer.cc index 925f05bd1f9..971940293c7 100644 --- a/src/test/common/test_ceph_timer.cc +++ b/src/test/common/test_ceph_timer.cc @@ -66,7 +66,7 @@ void run_orderly() }); } - EXPECT_LT(first.get(), second.get()); + EXPECT_TRUE(first.get() < second.get()); } struct Destructo {