Create a presubmit CI (#4934)

This commit is contained in:
Guillaume Chatelet
2025-12-15 15:26:50 +01:00
committed by Corentin Le Molgat
parent 39b915c763
commit 7f22b7208c
33 changed files with 176 additions and 74 deletions

View File

@@ -224,16 +224,17 @@ INSTANTIATE_TEST_SUITE_P(HighsStatusTest, StatusTest,
INSTANTIATE_TEST_SUITE_P(
HighsMessageCallbackTest, MessageCallbackTest,
Values(MessageCallbackTestParams(SolverType::kHighs,
/*support_message_callback=*/true,
/*support_interrupter=*/false,
/*integer_variables=*/false,
/*ending_substring=*/"HiGHS run time"),
MessageCallbackTestParams(SolverType::kHighs,
/*support_message_callback=*/true,
/*support_interrupter=*/false,
/*integer_variables=*/true,
/*ending_substring=*/"LP iterations 0")));
Values(
MessageCallbackTestParams(SolverType::kHighs,
/*support_message_callback=*/true,
/*support_interrupter=*/false,
/*integer_variables=*/false,
/*ending_substring=*/"HiGHS run time"),
MessageCallbackTestParams(SolverType::kHighs,
/*support_message_callback=*/true,
/*support_interrupter=*/false,
/*integer_variables=*/true,
/*ending_substring=*/"LP iterations 0")));
// HiGHS does not support callbacks other than message callback.
GTEST_ALLOW_UNINSTANTIATED_PARAMETERIZED_TEST(CallbackTest);