Skip to content

Commit

Permalink
Fix the SB version check for SABI test (#4030)
Browse files Browse the repository at this point in the history
b/360039566

Change-Id: If8c30563421d3cb925f7c04240bcbf85f54d0a4e
  • Loading branch information
yuying-y authored Aug 20, 2024
1 parent 8342d97 commit a1751d8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions starboard/nplb/nplb_evergreen_compat_tests/sabi_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -256,8 +256,8 @@ TEST_F(SabiTest, VerifySABI) {
SB_LOG(INFO) << "Using SB_API_VERSION=" << SB_API_VERSION;
SB_LOG(INFO) << "Using SABI=" << SB_SABI_JSON_ID;

ASSERT_LT(SB_API_VERSION, SB_MAXIMUM_API_VERSION)
<< "Evergreen should use SB_API_VERSION < SB_MAXIMUM_API_VERSION";
ASSERT_LE(SB_API_VERSION, SB_MAXIMUM_API_VERSION)
<< "Evergreen should use SB_API_VERSION <= SB_MAXIMUM_API_VERSION";

std::set<std::string> sabi_set;
sabi_set.insert(kSabiJsonIdArmHardfp);
Expand Down

0 comments on commit a1751d8

Please sign in to comment.