Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2d6f4704 authored by Mikhail Naganov's avatar Mikhail Naganov Committed by android-build-merger
Browse files

Merge "VTS Audio Effect: Allow 'NOT_SUPPORTED' from IEffect::offload method" into oc-dev

am: 2bb2add8

Change-Id: I4002f571964e615ec0e8357468cbf037fbdb0a43
parents 8c256169 2bb2add8
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -450,14 +450,16 @@ TEST_F(AudioEffectHidlTest, SetAudioSource) {
}

TEST_F(AudioEffectHidlTest, Offload) {
  description("Verify that calling Offload methods works for an effect");
  description("Verify that calling Offload method either works or returns not supported");
  EffectOffloadParameter offloadParam;
  offloadParam.isOffload = false;
  offloadParam.ioHandle =
      static_cast<int>(AudioHandleConsts::AUDIO_IO_HANDLE_NONE);
  Return<Result> ret = effect->offload(offloadParam);
  EXPECT_TRUE(ret.isOk());
  EXPECT_EQ(Result::OK, ret);
  EXPECT_TRUE(Result::OK == ret || Result::NOT_SUPPORTED == ret)
          << "Expected OK or NOT_SUPPORTED, actual value: "
          << static_cast<int32_t>(static_cast<Result>(ret));
}

TEST_F(AudioEffectHidlTest, PrepareForProcessing) {