forked from qt-creator/qt-creator
First simple tests to check: * pass-trough text without ANSI escape sequences * text-color change in line * text-bold change in line Change-Id: I054a3fb218e95dfd5e160f1ae71dc0638bc5f239 Reviewed-by: Petar Perisin <petar.perisin@gmail.com> Reviewed-by: Orgad Shaneh <orgads@gmail.com>
10 lines
237 B
QML
10 lines
237 B
QML
import qbs
|
|
import "../../autotest.qbs" as Autotest
|
|
|
|
Autotest {
|
|
name: "ANSI autotest"
|
|
Depends { name: "Utils" }
|
|
Depends { name: "Qt.widgets" } // TODO: Remove when qbs bug is fixed
|
|
files: "tst_ansiescapecodehandler.cpp"
|
|
}
|