8c2a95dbe2
* Mir starts up and is able to display system settings * x86_64 only for now, because at least ubuntu-app-test did not build on aarch64 Based on PureTryOut's work. Getting it to this stage was a huge effort (as it shows in the package count: 111(!)). See the merge request for details. [skip ci]: this won't finish in CI; ollieparanoid made sure that everything builds for x86_64.
13 lines
486 B
Diff
13 lines
486 B
Diff
diff --git a/tests/libqtdbustest/TestSuicidalProcess.cpp b/tests/libqtdbustest/TestSuicidalProcess.cpp
|
|
index 3bdaeea..fa1e4eb 100644
|
|
--- a/tests/libqtdbustest/TestSuicidalProcess.cpp
|
|
+++ b/tests/libqtdbustest/TestSuicidalProcess.cpp
|
|
@@ -51,7 +51,7 @@ TEST_F(TestSuicidalProcess, BehavesLikeNormalQProcess) {
|
|
pgrep.waitForFinished();
|
|
pgrep.waitForReadyRead();
|
|
|
|
- EXPECT_EQ("sleep 5",
|
|
+ EXPECT_EQ("/bin/sleep 5",
|
|
QString::fromUtf8(pgrep.readAll().trimmed()).toStdString());
|
|
}
|
|
|