diff --git a/tests/auto/qml/reformatter/comments.qml b/tests/auto/qml/reformatter/comments.qml new file mode 100644 index 00000000000..61889ea0079 --- /dev/null +++ b/tests/auto/qml/reformatter/comments.qml @@ -0,0 +1,16 @@ +import QtQuick 2.0 + + +/* Comment 1 + This is a multiline comment. */ + +/* + Another multiline comment. + + A slightly different formatting. +*/ +Item { + /* + Indented multiline comment. + */ +} diff --git a/tests/auto/qml/reformatter/reformatter.pro b/tests/auto/qml/reformatter/reformatter.pro index f4eb2fc3eeb..ba3a673b71e 100644 --- a/tests/auto/qml/reformatter/reformatter.pro +++ b/tests/auto/qml/reformatter/reformatter.pro @@ -8,3 +8,11 @@ TARGET = tst_reformatter SOURCES += \ tst_reformatter.cpp + +DISTFILES += \ + jssyntax.js \ + objectliteral.js \ + qmlreadonly.qml \ + qmlsingleton.qml \ + qmlsyntax.qml \ + comments.qml