summaryrefslogtreecommitdiffstats
path: root/tests
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'imSelections'axis2009-06-031-12/+33
|\
| * Fixed failing test case.axis2009-06-031-10/+12
| | | | | | | | | | We are not guaranteed that the checked-for event is the last event, so we look for it in a list instead.
| * Added an autotest for the new selection API in input methods.axis2009-06-031-0/+19
| |
| * Fixed an autotest that was left behind when API was updated.axis2009-06-031-2/+2
| |
* | Fixed tst_qcombobox compiler errors for Symbian WINSCW target.Janne Anttila2009-06-031-3/+3
| |
* | Merge branch 'master' of git@scm.dev.troll.no:qt/qt-s60-publicJanne Anttila2009-06-033-1/+173
|\ \
| * | Now qs60style does not send extra resize event in orientation change.peknurmi2009-06-033-1/+173
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | QSymbianControl::HandleResourceChange contained global event handling. So Qt handled same issues unnecessarily (for each shown top level widget). Now this global event handling is encapsulated to s60ResourceChange (new method) called by s60main. In addition, qs60style generated unnecessary resize events. If widget was fullscreen or maximized, then this caused incorrect resize events (old size delivered). With these changes, qs60style just informs widgets of style change (similarly as in qstylesheetstyle). Task-number: 251085 Reviewed-by: Jason Barron <jason.barron@nokia.com> Conflicts: src/gui/kernel/qapplication.h src/gui/styles/qs60style.cpp
* | | Added _networkselftest to QtNetwork autotest category file.Janne Anttila2009-06-031-0/+2
| | |
* | | Adapted _networkselftest autotest for Symbian environment.Janne Anttila2009-06-032-3/+29
| | | | | | | | | | | | | | | | | | - Fixed SRCDIR thing - Added default IAP handling - Skipped NTML related test cases for now
* | | Updated QtCore autotest category file for Symbian - qbytearraymatcher.Janne Anttila2009-06-031-0/+1
|/ / | | | | | | | | Added qbytearraymatcher test case to test set. The test passed at least in S60 5.0 emulator.
* | Enabled STL related test cases in QtCore autotest category file.Janne Anttila2009-06-031-3/+4
| | | | | | | | | | STL config is now enabled by default in configure.exe, this means we can also execute the related test cases now.
* | Updated QtSql autotest category file used in Symbian.Janne Anttila2009-06-031-0/+1
| | | | | | | | | | Added qsqldriver test case to test set. The test passed at least in S60 5.0 emulator.
* | Updated QtGui autotest category file used in Symbian.Janne Anttila2009-06-031-0/+1
| | | | | | | | | | Added modeltest test case to test set. The test passed at least in S60 5.0 emulator.
* | Updated QtCore autotest category file used in Symbian.Janne Anttila2009-06-031-0/+1
| | | | | | | | | | Added utf8 test case to test set. The test passed at least in S60 5.0 emulator.
* | Merge branch '4.5' of git@scm.dev.nokia.troll.no:qt/qtaxis2009-06-0214-16/+289
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: configure.exe examples/itemviews/puzzle/puzzle.pro examples/qtconcurrent/imagescaling/imagescaling.pro examples/widgets/movie/movie.pro tools/configure/configureapp.cpp Will rebuild configure.exe in next commit.
| * | Fixed failure of tst_Selftests::checkXML.Rohan McGovern2009-06-013-4/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Cherry-pick of 548da9a5434d615456a7a6efda3380b7138c6000 and some earlier changes predating public repo. Note that this test is not failing if using Qt 4.5 only. However, it fails if using Qt 4.5 selftests against Qt master testlib. We want to be able to use master testlib to run 4.5 testcases, and this change does no harm when using Qt 4.5 testlib, so backport it to 4.5 for convenience. Original change description follows: A few tests use printf, which means they interfere with the XML test logging. Blacklist them for the XML test. Note that these tests happened to pass under the old test logger implementation. That was because the test logger always printed XML tags on a single line, and the printf calls contained no special XML characters. The test logs generated were technically valid XML but contained extraneous text.
| * | Fix a ASSERT/Crash when adding two times the same QAction to a QGW.Alexis Menard2009-05-281-0/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | We were adding two times in the QActionPrivate list the entry for the current QGraphicsWidget if the action was existing before. Task-number:KDE Reviewed-by:bnilsen BT:yes
| * | Fix wrong sorting when using the QFileSystemModel with QTreeViewAlexis Menard2009-05-281-3/+62
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | An optimization was made to the sorting of QFileDialog to sort only the current root (meaning what the user see). This avoided slowness when the model was big with lots of leafs. The problem here is for the treeview, the root is always the same, we expands only nodes. In that case, a recursive sorting is needed to ensure that all expanded nodes are correctly sorted (and filtered). This will be slower that's why i use an hidden flag in the d pointer to deactivate the recursive sort for the QFileDialog. Task-number:254701 Reviewed-by:olivier BT:yes
| * | Fixed a problem with streaming QIcons containing multiple pixmaps.Trond Kjernåsen2009-05-281-0/+43
| | | | | | | | | | | | | | | | | | | | | | | | | | | If pixmaps were added through QIcon::addFile() with different sizes than the sizes of the pixmaps themselves, streaming the icon in didn't work properly. Task-number: 254374 Reviewed-by: Kim
| * | Minor cleanup.Trond Kjernåsen2009-05-281-4/+4
| | | | | | | | | | | | Reviewed-by: Kim
| * | Fixed: Setting a border using stylesheet for QComboBox adds an unwated frame.Olivier Goffart2009-05-271-3/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This was already fix. But there was still a frame if there was a stylesheet on the applicaiton. The reason is that the frame's constructor call the style for some hints. And later the combobox will query the style again for the frame hint, before the view get polished. The problem is that the StyleSheetStyle will fill the css cache with wrong information on the first call. This is not visible if there is no stylesheet as in the constructor, the widget style is still the default application stylesheet if there is no global applicaiton stylesheet. Task-number: 254589 Reviewed-by: jbache BT:
| * | Fixes for merge-request #407Leonardo Sobral Cunha2009-05-271-33/+37
| | | | | | | | | | | | Removed unused line and added task number to autotest.
| * | Dont show children when parent is not visible in QGraphicsItemdiaulas2009-05-271-0/+32
| | | | | | | | | | | | | | | | | | | | | | | | | | | When setVisible() is called on a QGraphicsItem, if the parent of that item was hidden, the child shouldn't be actually shown. Task-number: 197802 Reviewed-by: leo Reviewed-by: alexis
| * | QFileDialog selection bug when calling it multiple times.Alexis Menard2009-05-261-0/+33
| | | | | | | | | | | | | | | | | | | | | | | | The problem was that we don't clear the selection model if the previous selection was valid. Task-number:251341 Reviewed-by:jasplin
| * | Test for QDate::fromDate with string format.Olivier Goffart2009-05-261-0/+26
| | | | | | | | | | | | | | | Note that two digit years are always in the year 19xx This is excepted for compatibility reason as discussed with Peter
| * | Fixed: QSortFilterProxyModel setDynamicSortFilter doesn't works when setting ↵Olivier Goffart2009-05-262-1/+38
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | the model initially This was caused by two different bug: - In the QSortFilterProxyModel, we need to re-sort when setting the source model change the sorting column (happen when setting a model initially) - In the treeview, we need to activate the sorting even if there is no column yet (because the initial model is empty Task-number: 254234 Reviewed-by: Thierry BT:
| * | Fixed qmake writing targets into the root of the current drive whenRohan McGovern2009-05-261-0/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | DESTDIR=./ and using Windows, nmake and shadow builds. qmake would canonicalize the DESTDIR of "./" to "". Then it would check if the original DESTDIR ended with "/", and if so, append it to the new DESTDIR, resulting in a DESTDIR of "/" - the root of the current drive. Don't do that. This bug doesn't occur with in-source builds because qmake detects that the source and build directories are the same directory and replaces the DESTDIR of "./" with "" before it reaches the buggy code. Autotest: included Reviewed-by: Lincoln Ramsay
* | | Merge branch 'master' of git@scm.dev.troll.no:qt/qt-s60-publicMiikka Heikkinen2009-06-011-0/+1
|\ \ \
| * | | Fix to GCCE compiler error in qtablewidget test case.Janne Anttila2009-06-011-0/+1
| | |/ | |/| | | | | | | | | | | | | The fixed error was: {standard input}: Assembler messages: {standard input}:47278: Error: branch out of range
* | | Removed PAGED keyword from qlocale test case GCCE builds in S60 3.2 ↵Miikka Heikkinen2009-06-011-1/+8
|/ / | | | | | | | | | | environments, as it was causing compilation of the test case to crash.
* | No need for this IP address.Aleksandar Sasha Babic2009-05-281-1/+0
| |
* | Workaround for non-native makefile target names with symbian-abl.Janne Anttila2009-05-271-1/+5
| |
* | Configured qtwidgets autotest to use default IAP without user prompts.Janne Anttila2009-05-271-0/+13
| |
* | Fixed qscriptv8testsuite test case out-of-memory crashes.Janne Anttila2009-05-272-1/+6
| | | | | | | | | | Increased qscriptv8testsuite max heap size and skipped two test cases on Symbian which demand too much memory.
* | Converted qstylesheetstyle test case to use qttest_p4.Janne Anttila2009-05-271-11/+1
| | | | | | | | | | | | qttest_p4 takes care of definign the UID3 for autotests in Symbian OS, among the other things. The UID3 is needed to run tests ih HW with cetest.
* | Fixed qscriptv8testsuite test case deployment for Symbian.Janne Anttila2009-05-271-2/+2
| | | | | | | | Also gave more heap for test to run properly on Symbian.
* | Fixed qpen test case panic in Symbian OS.Janne Anttila2009-05-271-6/+6
| | | | | | | | | | | | | | | | "Expected data of type _bool_, got _int_ for element 2 of data with tag _differentColor_." FALSE and TRUE are defined to int in Symbian OS, buu test case expects boolean.
* | Fixed qsqldatabase test case compilation.Janne Anttila2009-05-271-1/+0
| | | | | | | | Unterminated `#if_ conditional, probably due to bad merge
* | Fixed qtemporaryfile test case compilation for Symbian OS.Janne Anttila2009-05-272-1/+5
| | | | | | | | | | Symbian mmp file format does not accept strings with quotes in defines. For this reason the SRCDIR need to be defined in sources.
* | Increased few timeouts in qtimer test to compensate for delays caused by SymbianMiikka Heikkinen2009-05-261-10/+26
| | | | | | | | emulator startup.
* | Reduced number of processes in one qprocess test case to avoid running outMiikka Heikkinen2009-05-261-6/+4
| | | | | | | | of process handles.
* | Merge branch 'master' of git@scm.dev.troll.no:qt/qt-s60-publicJanne Anttila2009-05-263-13/+26
|\ \
| * | Disabled building two versions of same library in qlibrary autotest for Symbian,Miikka Heikkinen2009-05-261-3/+10
| | | | | | | | | | | | as version tests are disabled in Symbian anyway.
| * | Fixed qlibrary autotest compilation error in symbian-abldMiikka Heikkinen2009-05-261-3/+4
| | |
| * | Commented out include that was needed only by commented out codeMiikka Heikkinen2009-05-261-7/+12
| | | | | | | | | | | | and causing build problems for symbian.
* | | Fixed tst_QLocalSocket::processConnection test case for Symbian.Janne Anttila2009-05-263-3/+6
|/ /
* | Merge branch '4.5' of git@scm.dev.nokia.troll.no:qt/qtaxis2009-05-259-6/+766
|\ \ | |/ | | | | | | | | | | | | Conflicts: src/corelib/io/qfile.cpp src/corelib/kernel/qsharedmemory_unix.cpp src/network/socket/qnativesocketengine_p.h src/network/socket/qnativesocketengine_unix.cpp
| * Pressing enter in a QPlainTextEdit embedded on a itemview should insert a ↵Olivier Goffart2009-05-221-0/+78
| | | | | | | | | | | | | | | | | | | | newline Do the same special case as for QTextEdit (yes, this is a pitty that we have special cases like that Reviewed-by: Thierry Task-number: 252532
| * Unconditionally open temporary files in ReadWrite modeJoão Abecasis2009-05-221-0/+15
| | | | | | | | | | | | | | | | | | | | | | Although QTemporaryFile hides QFile::open(OpenMode), this function is still available when accessing instance methods through the base class. Unconditionally setting ReadWrite allows the temporary file to be re-opened with different flags. Task-number: 248223 Reviewed-by: Thiago
| * QTemporaryFile would forget fileName while file was "closed"João Abecasis2009-05-221-0/+23
| | | | | | | | | | | | | | Note: this showed even if the file descriptor was kept open. Reviewed-by: Peter Hartmann Reviewed-by: Thiago