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

Commit c1763a67 authored by Tomasz Wasilczyk's avatar Tomasz Wasilczyk
Browse files

Fix remaining broadcastradio 1.1 VTS TODOs.

This includes:
- cover all AM/FM bands, not just first one
- fix flakiness on late callback dereference
- fix 1.0 tuneComplete check
- move utils includes into separate subdirectories

Bug: b/36864490
Test: VTS
Change-Id: I6e2427ac29abd6278c9783cf83b4df05195ac7ea
parent 678607b1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -20,7 +20,7 @@
#include "BroadcastRadio.h"
#include "Tuner.h"

#include <Utils.h>
#include <broadcastradio-utils/Utils.h>
#include <log/log.h>

namespace android {
+1 −1
Original line number Diff line number Diff line
@@ -18,9 +18,9 @@

#include "VirtualRadio.h"

#include <WorkerThread.h>
#include <android/hardware/broadcastradio/1.1/ITuner.h>
#include <android/hardware/broadcastradio/1.1/ITunerCallback.h>
#include <broadcastradio-utils/WorkerThread.h>

namespace android {
namespace hardware {
+1 −1
Original line number Diff line number Diff line
@@ -15,7 +15,7 @@
 */
#include "VirtualProgram.h"

#include <Utils.h>
#include <broadcastradio-utils/Utils.h>

#include "resources.h"

+1 −1
Original line number Diff line number Diff line
@@ -15,7 +15,7 @@
 */
#include "VirtualRadio.h"

#include <Utils.h>
#include <broadcastradio-utils/Utils.h>

namespace android {
namespace hardware {
+1 −1
Original line number Diff line number Diff line
@@ -14,7 +14,7 @@
 * limitations under the License.
 */

#include <WorkerThread.h>
#include <broadcastradio-utils/WorkerThread.h>
#include <gtest/gtest.h>

namespace {
Loading