Skip to content

Commit

Permalink
Fix OneBranch Build of msquictest (#4688)
Browse files Browse the repository at this point in the history
  • Loading branch information
nibanks authored Dec 5, 2024
1 parent 3c1a841 commit e53b1e0
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/test/bin/quic_gtest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,11 @@ class QuicTestEnvironment : public ::testing::Environment {
ASSERT_TRUE(DriverService.Start());
ASSERT_TRUE(DriverClient.Initialize(&CertParams, DriverName));

Config.Flags |= UseDuoNic ? QUIC_EXECUTION_CONFIG_FLAG_XDP : QUIC_EXECUTION_CONFIG_FLAG_NONE;
#if defined(QUIC_API_ENABLE_PREVIEW_FEATURES)
if (UseDuoNic) {
Config.Flags |= QUIC_EXECUTION_CONFIG_FLAG_XDP;
}
#endif
QUIC_TEST_CONFIGURATION_PARAMS Params {
UseDuoNic,
Config,
Expand Down

0 comments on commit e53b1e0

Please sign in to comment.