forked from qt-creator/qt-creator
Previously the runInShell and outputForRunInShell methods were exclusively processed single threaded, meaning all calls were processed sequentially. With the multiplexed helper script we can now run multiple processes simultaneously. ( see tst_manual_deviceshell ) Additionally the new script allows us to capture both stdout and stderr from commands which was not possible previously. Change-Id: I52f4fb46d872dc274edb9c11872d2f6543741b34 Reviewed-by: David Schulz <david.schulz@qt.io> Reviewed-by: Jarek Kobus <jaroslaw.kobus@qt.io> Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
20 lines
616 B
QML
20 lines
616 B
QML
import qbs
|
|
|
|
Project {
|
|
name: "Utils autotests"
|
|
references: [
|
|
"fileutils/fileutils.qbs",
|
|
"ansiescapecodehandler/ansiescapecodehandler.qbs",
|
|
"fuzzymatcher/fuzzymatcher.qbs",
|
|
"indexedcontainerproxyconstiterator/indexedcontainerproxyconstiterator.qbs",
|
|
"persistentsettings/persistentsettings.qbs",
|
|
"qtcprocess/qtcprocess.qbs",
|
|
"settings/settings.qbs",
|
|
"stringutils/stringutils.qbs",
|
|
"templateengine/templateengine.qbs",
|
|
"treemodel/treemodel.qbs",
|
|
"multicursor/multicursor.qbs",
|
|
"deviceshell/deviceshell.qbs",
|
|
]
|
|
}
|