Skip to content

Commit

Permalink
no dcheck timeturn
Browse files Browse the repository at this point in the history
  • Loading branch information
olofkallander committed Oct 25, 2023
1 parent 841585d commit b24a6c5
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
6 changes: 3 additions & 3 deletions test/integration/ConfIntegrationTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ TEST_F(IntegrationTest, ptime10)
EXPECT_LT(data.amplitudeProfile[0].second, 100);

EXPECT_NEAR(data.amplitudeProfile.back().second, MIXED_VOLUME, 250);
EXPECT_NEAR(data.amplitudeProfile.back().first, 48000 * 0.74, 48000 * 0.2);
EXPECT_NEAR(data.rampupAbove(3100), 48000 * 0.74, 48000 * 0.2);
}

EXPECT_EQ(data.audioSsrcCount, 1);
Expand Down Expand Up @@ -613,7 +613,7 @@ TEST_F(IntegrationTest, conferencePort)
{
EXPECT_LT(data.amplitudeProfile[0].second, 100);

EXPECT_NEAR(data.amplitudeProfile.back().second, MIXED_VOLUME, 250);
EXPECT_NEAR(data.amplitudeProfile.back().second, MIXED_VOLUME, 750);
EXPECT_NEAR(data.amplitudeProfile.back().first, 48000 * 1.25, 48000 * 0.2);
}

Expand Down Expand Up @@ -1006,7 +1006,7 @@ TEST_F(IntegrationTest, confList)
{
EXPECT_LT(data.amplitudeProfile[0].second, 100);

EXPECT_NEAR(data.amplitudeProfile.back().second, MIXED_VOLUME, 250);
EXPECT_NEAR(data.amplitudeProfile.back().second, MIXED_VOLUME, 750);
EXPECT_NEAR(data.rampupAbove(3100), 48000 * 1.25, 48000 * 0.2);
}

Expand Down
2 changes: 1 addition & 1 deletion test/integration/IntegrationCallTypes.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ TEST_P(IntegrationCallTypesTest, party3AllModes)
for (auto id : {0, 1, 2})
{
const auto data =
analyzeRecording<SfuClient<Channel>>(group.clients[id].get(), 5, true, 2 == id ? 2 : 0, true);
analyzeRecording<SfuClient<Channel>>(group.clients[id].get(), 5, true, 2 == id ? 2 : 0, false);
EXPECT_EQ(data.dominantFrequencies.size(), 2);
if (data.dominantFrequencies.size() >= 2)
{
Expand Down
3 changes: 3 additions & 0 deletions test/integration/TimeTurnerTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@

TEST(TimeTurner, threads3)
{
#ifdef NOPERF_TEST
GTEST_SKIP();
#endif
emulator::TimeTurner timeSource;
utils::Time::initialize(timeSource);

Expand Down

0 comments on commit b24a6c5

Please sign in to comment.