From 67497e6bc41511032061c28bdad19281431cd9db Mon Sep 17 00:00:00 2001 From: Jarek Kobus Date: Mon, 14 Mar 2022 10:31:34 +0100 Subject: [PATCH] Compile fix Amends cfe8b7ad88ca57a76fd00f7757ccf10d1322ddd2 Change-Id: I4a570c481cf631ee6650a5c9d3b0f0540df88671 Reviewed-by: Christian Stenger --- tests/auto/utils/qtcprocess/tst_qtcprocess.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/auto/utils/qtcprocess/tst_qtcprocess.cpp b/tests/auto/utils/qtcprocess/tst_qtcprocess.cpp index c25a75ab6e3..c4ad1563c14 100644 --- a/tests/auto/utils/qtcprocess/tst_qtcprocess.cpp +++ b/tests/auto/utils/qtcprocess/tst_qtcprocess.cpp @@ -301,6 +301,7 @@ void tst_QtcProcess::cleanupTestCase() Q_DECLARE_METATYPE(ProcessArgs::SplitError) Q_DECLARE_METATYPE(Utils::OsType) +Q_DECLARE_METATYPE(Utils::ProcessResult) void tst_QtcProcess::splitArgs_data() { @@ -990,7 +991,8 @@ void tst_QtcProcess::runBlockingStdOut_data() // calls the callback handler and tries to stop the process forcefully what is no-op // at this point in time since the process is already finished. QTest::newRow("Long timeout without end of line") - << false << 20 << ProcessResult::FinishedWithSuccess;} + << false << 20 << ProcessResult::FinishedWithSuccess; +} void tst_QtcProcess::runBlockingStdOut() {