From 91509727e062b69c6bc807403d5e30f2f8478e64 Mon Sep 17 00:00:00 2001 From: Christian Stenger Date: Thu, 16 Apr 2020 16:26:59 +0200 Subject: [PATCH] AutoTest: Fix Qt Quick Test execution Qt Quick Tests share their settings with Qt Tests and have none on their own. Make the separate handled framework of Qt Quick Test derive from Qt Test framework to share the settings. Regression introduced with 2c79196ab5d. Change-Id: I9934b0357365e2739e7a72b114df97f49da6bc50 Reviewed-by: hjk --- src/plugins/autotest/quick/quicktestframework.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/plugins/autotest/quick/quicktestframework.h b/src/plugins/autotest/quick/quicktestframework.h index d42e9ff46e3..deb3b499a21 100644 --- a/src/plugins/autotest/quick/quicktestframework.h +++ b/src/plugins/autotest/quick/quicktestframework.h @@ -25,7 +25,7 @@ #pragma once -#include "../itestframework.h" +#include "../qtest/qttestframework.h" namespace Autotest { namespace QuickTest { @@ -38,10 +38,10 @@ const char FRAMEWORK_NAME[] = "QtQuickTest"; namespace Internal { -class QuickTestFramework : public ITestFramework +class QuickTestFramework : public QtTestFramework { public: - QuickTestFramework() : ITestFramework(true) {} + QuickTestFramework() = default; const char *name() const override; unsigned priority() const override;