aboutsummaryrefslogtreecommitdiff
path: root/pw_sync_freertos/thread_notification_test.cc
diff options
context:
space:
mode:
Diffstat (limited to 'pw_sync_freertos/thread_notification_test.cc')
-rw-r--r--pw_sync_freertos/thread_notification_test.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/pw_sync_freertos/thread_notification_test.cc b/pw_sync_freertos/thread_notification_test.cc
index 0e6322fe1..d8ab27381 100644
--- a/pw_sync_freertos/thread_notification_test.cc
+++ b/pw_sync_freertos/thread_notification_test.cc
@@ -15,12 +15,13 @@
#include "pw_sync/thread_notification.h"
#include <chrono>
+#include <optional>
#include "FreeRTOS.h"
#include "gtest/gtest.h"
#include "pw_chrono/system_clock.h"
+#include "pw_thread/non_portable_test_thread_options.h"
#include "pw_thread/sleep.h"
-#include "pw_thread/test_threads.h"
#include "pw_thread/thread.h"
#include "pw_thread/thread_core.h"
#include "task.h"
@@ -66,6 +67,7 @@ class NotificationAcquirer : public thread::ThreadCore {
TEST(ThreadNotification, AcquireWithoutSuspend) {
NotificationAcquirer notification_acquirer;
+ // TODO: b/290860904 - Replace TestOptionsThread0 with TestThreadContext.
Thread thread =
Thread(thread::test::TestOptionsThread0(), notification_acquirer);