[libcamera-devel] [PATCH 18/18] test: Simplify tests with parent-child relationships

Laurent Pinchart laurent.pinchart at ideasonboard.com
Mon Aug 12 14:46:42 CEST 2019


Create object instances with a parent to avoid the need for reparenting
objects manually.

Signed-off-by: Laurent Pinchart <laurent.pinchart at ideasonboard.com>
---
 test/event-thread.cpp | 8 +-------
 test/timer-thread.cpp | 8 +-------
 2 files changed, 2 insertions(+), 14 deletions(-)

diff --git a/test/event-thread.cpp b/test/event-thread.cpp
index 4a82d49b94f1..58f452339f87 100644
--- a/test/event-thread.cpp
+++ b/test/event-thread.cpp
@@ -26,7 +26,7 @@ public:
 	{
 		pipe(pipefd_);
 
-		notifier_ = new EventNotifier(pipefd_[0], EventNotifier::Read);
+		notifier_ = new EventNotifier(pipefd_[0], EventNotifier::Read, this);
 		notifier_->activated.connect(this, &EventHandler::readReady);
 	}
 
@@ -60,12 +60,6 @@ public:
 		return notified_;
 	}
 
-	void moveToThread(Thread *thread)
-	{
-		Object::moveToThread(thread);
-		notifier_->moveToThread(thread);
-	}
-
 private:
 	void readReady(EventNotifier *notifier)
 	{
diff --git a/test/timer-thread.cpp b/test/timer-thread.cpp
index b9373050068c..5c1b4ac4a401 100644
--- a/test/timer-thread.cpp
+++ b/test/timer-thread.cpp
@@ -20,7 +20,7 @@ class TimeoutHandler : public Object
 {
 public:
 	TimeoutHandler()
-		: timeout_(false)
+		: timer_(this), timeout_(false)
 	{
 		timer_.timeout.connect(this, &TimeoutHandler::timeoutHandler);
 		timer_.start(100);
@@ -31,12 +31,6 @@ public:
 		return timeout_;
 	}
 
-	void moveToThread(Thread *thread)
-	{
-		Object::moveToThread(thread);
-		timer_.moveToThread(thread);
-	}
-
 private:
 	void timeoutHandler(Timer *timer)
 	{
-- 
Regards,

Laurent Pinchart



More information about the libcamera-devel mailing list