summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorDominik Holland <dominik.holland@qt.io>2020-01-16 14:31:14 +0100
committerDominik Holland <dominik.holland@qt.io>2020-01-17 15:18:30 +0100
commit09836245286224aabdf9fbb19b258d04251c79aa (patch)
treebb6f13058c30911ab5e536bd1320f1016fa95564 /tests
parent2159e80e333ae350fc9b84a454b0076c2d4085c9 (diff)
parent5521135b4587e4126d3d0257b04370bd02741d20 (diff)
downloadqtivi-09836245286224aabdf9fbb19b258d04251c79aa.tar.gz
Merge remote-tracking branch 'origin/5.13' into 5.14
Change-Id: I0a79176763ca001072d41f377869854e1982e4e7
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/core/ivigenerator/org.example.echo.qface8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/auto/core/ivigenerator/org.example.echo.qface b/tests/auto/core/ivigenerator/org.example.echo.qface
index 17a519c..faed373 100644
--- a/tests/auto/core/ivigenerator/org.example.echo.qface
+++ b/tests/auto/core/ivigenerator/org.example.echo.qface
@@ -34,6 +34,9 @@ interface Echo {
WeekDay weekDay;
TestEnum testEnum;
real UPPERCASEPROPERTY;
+ /* AUTOSUITE-1340 */
+ @config_simulator: { default: ["Hello Qt"] }
+ OnlyAStringInAStruct stringInAStructProperty;
string echo(string msg);
string id() const;
@@ -144,3 +147,8 @@ struct Combo {
struct AnotherStruct {
int justANumber;
}
+
+/* AUTOSUITE-1340 */
+struct OnlyAStringInAStruct {
+ string myString;
+}