aboutsummaryrefslogtreecommitdiffstats
path: root/tests/samplebinding/templateinheritingclass_test.py
Commit message (Collapse)AuthorAgeFilesLines
* Updated license headers of the tests (Python)Friedemann Kleint2016-09-231-22/+27
| | | | | Change-Id: I982d1d02a0abde50614b8c1e7979100d862455f4 Reviewed-by: Lars Knoll <lars.knoll@qt.io>
* Revert "Fix the shiboken tests on VS2015"Christian Tismer2016-06-041-0/+75
| | | | | | | | | | Don't remove the photon test; doing so is just asking to allow bugs to creep in undetected. Fixing the test is much better. This reverts commit 4614591a6cb88626541c03f10ec265f30668915b. Change-Id: I68f0a8f43acb2ff8d4e00b01a1204e9e00a5c7f4 Reviewed-by: Christian Tismer <tismer@stackless.com>
* Fix the shiboken tests on VS2015Christian Tismer2016-06-031-75/+0
| | | | | | | | | | | | | | | | | | The shiboken tests do not build, so we cannot test at all with VS2015. One issue was a simple C++11 restriction, the other involves the classes in photon.cpp / photon.h . I could not find out how to fix that, so I removed the photon files, in order to get a running test framework. If somebody knows an easy patch instead of removing photon, please let me know. Otherwise I would prefer pretty much to move on. [ChangeLog][shiboken][PYSIDE-324] Fix compilation of tests with VS2015 Change-Id: I6a8d64b18c5eba110f4c03dba63c4b21d6816918 Reviewed-by: Christian Tismer <tismer@stackless.com>
* Replaced Nokia copyrights in headerTeemu Kaukoranta2013-05-281-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | Replaced old Nokia copyrights with Digia copyrights. Removed "All rights reserved" strings without leading copyrights were removed (for example, 'Copyright SomeCompany, all rights reserved remain untouched). Did NOT touch contact details, will change them later. Excluded folders that have '3rdparty' in path. Used command: find . -path '*/3rdparty/*' -prune -o -exec grep -ilI -E '.*Copyright.*Nokia.*' {} \; | tee >(xargs sed -i -r '1,10 s/([ \t#*]*)(.*Copyright.*Nokia.*)/ \1Copyright \(C\) 2013 Digia Plc and\/or its subsidiary\(-ies\)\./I') >(xargs sed -i -r '1,10 s/(^[ \t#*]*)(all rights reserved.*)/\1/I') This excludes binary files and retains whitespace and #* characters in the beginning of the edited lines. Change-Id: I0d49f991c3dbd45d804843f185714e8681bc6c51 Reviewed-by: Sergio Ahumada <sergio.ahumada@digia.com> Reviewed-by: Janne Anttila <janne.anttila@digia.com>
* Added tests for classes that are typedefs that implement a template class.Marcelo Lira2012-03-081-0/+75
This simulates the situation found in Qt's phonon module.