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

Commit ee760e80 authored by Kevin Rocard's avatar Kevin Rocard Committed by android-build-merger
Browse files

Audio VTS: run tear-down hooks in LIFO instead of FIFO am: cfab8dac am: 53811929

am: 202bc18e

Change-Id: Ieacb391e70f13f8d80685246c0f499f2752acf65
parents 6aa28355 202bc18e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -37,7 +37,7 @@ namespace utility {
class Environment : public ::testing::VtsHalHidlTargetTestEnvBase {
   public:
    using TearDownFunc = std::function<void()>;
    void registerTearDown(TearDownFunc&& tearDown) { tearDowns.push_back(std::move(tearDown)); }
    void registerTearDown(TearDownFunc&& tearDown) { tearDowns.push_front(std::move(tearDown)); }

   private:
    void HidlTearDown() override {