summaryrefslogtreecommitdiffstats
path: root/tests/tests.pro
Commit message (Collapse)AuthorAgeFilesLines
* Enable tst_scion for MSVC.Friedemann Kleint2016-02-241-1/+1
| | | | | | | | | Add option /bigobj to fix error: tscxml\tests\auto\scion\tst_scion.cpp : fatal error C1128: number of sections exceeded object file format limit: compile with /bigobj Task-number: QTBUG-51144 Change-Id: Ib89f227388ce264315b98b1486bda1de6d5acb52 Reviewed-by: Simon Hausmann <simon.hausmann@theqtcompany.com>
* Temporarily disable building tests/examples with msvc.Erik Verbruggen2015-11-201-2/+1
| | | | | | | The CI has an issue due to which these can't be build. Change-Id: Iba2ff0ac7b41bbe52b7a838eb3f1cc44f068ed3b Reviewed-by: Erik Verbruggen <erik.verbruggen@theqtcompany.com>
* Pulled the examples apart.Erik Verbruggen2015-06-111-2/+1
| | | | | Change-Id: Ie379f3996cf62e4a0d0c9df166f33f74b9eeab8e Reviewed-by: Erik Verbruggen <erik.verbruggen@theqtcompany.com>
* Moved qscxmlc, examples, and tests to correct places.Erik Verbruggen2015-06-111-4/+2
| | | | | Change-Id: I943df1ba0c3cecaf54decc59526d6f4334b480db Reviewed-by: Erik Verbruggen <erik.verbruggen@theqtcompany.com>
* Initial commit for integrating qscxmllib and qscxmlcppRisto Avila2015-04-091-1/+2
| | | | | Change-Id: I4843c46575359dbf6f5170bfe06a924ae7a6ab22 Reviewed-by: Erik Verbruggen <erik.verbruggen@theqtcompany.com>
* Generate a single QTest that embeds all scion tests.Erik Verbruggen2015-03-301-0/+1
| | | | | Change-Id: Ibe7a9a2ba0332e9578e109fb96baac37874cd575 Reviewed-by: Erik Verbruggen <erik.verbruggen@theqtcompany.com>
* ID mangling for C++ names.Erik Verbruggen2015-03-301-2/+2
| | | | | | | | | | | | | | | | | | | The XML IDs can have a couple of characters that C++ can't grok as identifier names, so those IDs have to be mangled. We can't simply replace all illegal characters with e.g. an underscore, because that could easily create conflicts. For example: id="a:b" and id="a_b" would suddenly have the same name. So, the following patterns are used: "_" -> "__" ":" -> "_colon_" "-" -> "_dash_" "@" -> "_at_" This mangling does not affect the objectName. Change-Id: I2ba5e4b736fb0e7e9cc3767036f8aaba8a1876b3 Reviewed-by: Erik Verbruggen <erik.verbruggen@theqtcompany.com>
* add simple 1000 states, 5000 transitions testFawzi Mohamed2015-03-021-0/+6
Change-Id: Ie1faaa3e233e4f146bdc234be95e6c431656813c Reviewed-by: Fawzi Mohamed <fawzi.mohamed@theqtcompany.com>