Skip to main content
aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2018-12-07Bug 541822 - POM and product version change for 4.11 releaseI20181212-0230I20181211-1800I20181211-0230I20181210-1800I20181210-0755I20181210-0535Niraj Modi1-1/+1
Change-Id: Ic13c9d1d503e49d1e1ac30968c733b8c650b2495 Signed-off-by: Niraj Modi <niraj.modi@in.ibm.com>
2018-10-11Bug 307309 - [console] Some uses of IOConsoleInputStream.available()I20181017-1800Sarika Sinha3-3/+16
throw IOException for no good reason Change-Id: Iaa7ad7e96bb602532ed7af4c02e35911d26a7e3f
2018-09-04Bug 538531 - POM version change for 4.10 releaseY20180905-2200I20180907-0855I20180907-0715I20180907-0650I20180907-0400I20180906-1400I20180906-0005I20180905-1305I20180905-0410Sravan Kumar Lakkimsetti1-1/+1
Change-Id: I05159d79d261e80ffc94a2bf3abccc6ec3b46243 Signed-off-by: Sravan Kumar Lakkimsetti <sravankumarl@in.ibm.com>
2018-08-21Bug 535802 - EPL-2.0 for platform.debug testsLars Vogel87-261/+522
Commands used for this conversion: git checkout master git reset --hard origin/master git pull find . -type f ! -name "*.exsd" ! -name "org.eclipse.jdt.ui.prefs" -exec sed -i 's/Eclipse Public License v1.0/Eclipse Public License 2.0/g' {} + find . -type f ! -name "*.exsd" ! -name "org.eclipse.jdt.ui.prefs" -exec sed -i -E 's/([[:blank:]]*[^[:blank:]])*([[:blank:]]*)http:\/\/www.eclipse.org\/legal\/epl-v10.html/\1\2https:\/\/www.eclipse.org\/legal\/epl-2.0\/\ \1\ \1\2SPDX-License-Identifier: EPL-2.0/' {} + # Get rid of the All rights reserved find . -type f ! -name "*.exsd" ! -name "org.eclipse.jdt.ui.prefs" ! -name "pom.xml" -exec sed -i -E 's/([[:blank:]]*[^[:blank:]])*([[:blank:]]*)(All rights reserved. )/\1\n\1\2/' {} + Change-Id: I6106979d3335c00b9b9afba17f5397b9507bf6ab Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
2018-07-19Bug 521038 - [refactoring] Replace anonymous Runnable classes by lambdaAlexander Kurtakov4-99/+60
expression Changed some formatters to Eclipse so there is some formatting happening as the debug one is not clear where to get from and it's unrealistic to expect random contributors to do it. Change-Id: I731410854f9a4ac0c9fc18bcf3ad3dcf7d941c9a Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
2018-06-12Bug 534681 - Remove redundant modifiers in org.eclipse.debug.testsKarsten Thoms1-26/+26
Change-Id: I1d275e99c6f3081d73d272b02dc9e9ffd0da11ea Signed-off-by: Karsten Thoms <karsten.thoms@itemis.de>
2018-06-05Bug 535318 - Update license to EPL-2.0 for platform.debug in about.htmlI20180606-1020Lars Vogel1-16/+24
Change-Id: Ide949707f61f88a56527c56610c1dfeb551a1db9 Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
2018-06-01Version 4.9 update in plaform.debug as prep for the EPL 2.0 updateI20180601-0915I20180601-0900Lars Vogel2-2/+2
Change-Id: I0780d35d66fd25b70bbf7618979672bcbd2a559e Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
2018-05-30Bug 535191 - POM version change for 4.9 releaseI20180531-2125I20180531-2000I20180531-1245I20180531-0910Alexander Kurtakov1-1/+1
Change-Id: Ic421012d21e951ef7763a6be83c2f2a42eed5c15 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
2018-05-09Bug 533788 - Use StandardCharsetsI20180509-0800Alexander Kurtakov1-12/+2
Another bunch of such changes. Change-Id: I4012772607b8f7c165156b8d03fbd5bcbee4b581 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
2018-04-24Remove useless throws.Alexander Kurtakov1-2/+2
Change-Id: I54b08e46ecc260dbb7cfe292e939808acad4baf9 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
2018-04-13Bug 268608 - find/replace action disabled on first opening of consoleI20180417-2000I20180416-2000I20180416-0305I20180415-2000I20180414-1500I20180413-2000Simeon Andreev1-4/+42
Whenever a new console page is opened in the Console View, a FindReplaceAction is registered for this console page. The target of this action is set before the new console page is set as active by the PageBookView. This results in either a disabled find/edit action, if there was no previous console page, or an action which targets the previously active console page. I.e. the user either cannot search in the new console page, or searches in an old one. This is also true when switching between consoles, or when closing the Console View and re-opening it. Two points are important here. First, global actions of TextConsolePage pages are only updated on creation of the action, or if the selection in the console's text widget changes. And second, PageBookView.showPageRec will set the current page only after the SWT control of the new page is created (i.e. only after the new actions are updated). Therefore the target of the global find/replace action is updated only when a new console page is created, and its updated with the wrong current page. This change ensures that the FindReplaceAction has the correct target page and its enabled state is correct, both when switching pages and when opening new ones. Namely, the selection of a TestConsolePage is "reset" after the new page is created and shown. Change-Id: I22c368acce902d12f83274c6df12e013fb7afaa3 Signed-off-by: Simeon Andreev <simeon.danailov.andreev@gmail.com>
2018-03-29Bug 533055 - Remove redundant type argumentsI20180403-2000I20180402-2000I20180401-2000I20180331-1500I20180330-2235I20180330-2000I20180329-2000Alexander Kurtakov15-161/+76
Change-Id: I6f62094af1b4ad2c679e78cc635641918f958fb4 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
2018-03-21Bug 390052 - Viewer update listener timed outI20180329-0000I20180328-2000I20180327-2000I20180327-0805I20180327-0630I20180326-2000I20180325-2000I20180324-1500I20180323-2000I20180323-0355I20180322-2000I20180322-0645I20180322-0225I20180321-2000Sarika Sinha1-0/+1
Change-Id: I51fabdeb3ebf9c98761140012a5cbafa7d852b42
2018-02-19Reverted fix for bug 268608: [console] find/replace action in MessageConsole ↵I20180225-2000I20180224-1500I20180223-2000I20180222-2000I20180221-2000I20180220-2000I20180219-2000Dani Megert1-43/+5
disabled on first opening of console view
2018-02-15Bug 435731 - [Tests] Listener not finished: Viewer Update ListenerI20180217-1500I20180216-2000I20180216-0415I20180215-2000Sarika Sinha1-0/+3
Change-Id: I6c8ce911bfcb53d5d07a433b4090b1a54b894ca3
2018-02-14Bug 435731 - [Tests] Listener not finished: Viewer Update Listener I20180214-2000Sarika Sinha2-2/+7
Change-Id: I818a80bc18315a264ddb720b8cc3ffee32e8ca61
2017-12-11Bug 41353 - Launch configuration prototypesI20171211-2000Axel Richard1-1/+207
First implementation of the launch configuration prototypes mechanism. Change-Id: I21a2a97b83aa9cb1be79153bbc4b72171cc6be20 Signed-off-by: Axel Richard <axel.richard@obeo.fr>
2017-12-08Bug 390052 - Viewer update listener timed outI20171210-2000I20171209-1500I20171209-1020I20171208-2000Sarika Sinha1-1/+3
Change-Id: I18582e6ea64a0319e55e799d1255622e86fdfca0
2017-12-01Bug 527939 - Add Automatic-Module-Name to MANIFEST.MF in Platform DebugI20171201-0345Sarika Sinha1-0/+1
Change-Id: I74fe40f0bf1d1d07c0612e3b4e6f786e14f38a50 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
2017-11-05Bug 526058 - test should wait for job trigered by AbstractModelProxyI20171108-2000I20171107-2000I20171106-2000I20171106-0630I20171105-2000Andrey Loskutov1-4/+7
This seem to fix the instability of the ContentTests.testLabelUpdatesCompletedOutOfSequence* tests. Change-Id: Ib3b414c4f65076095ba7a9d5fc9c29dc33d8a795 Signed-off-by: Andrey Loskutov <loskutov@gmx.de>
2017-10-25Bug 526058 - [Tests]S4_8_0_M3aS4_8_0_M3I20171104-2025I20171104-1500I20171103-2000I20171103-1105I20171103-0715I20171103-0405I20171102-2000I20171101-2000I20171031-2000I20171030-2000I20171030-0400I20171029-2000I20171028-1500I20171027-2340I20171027-2000I20171025-2000Andrey Loskutov1-1/+1
ContentTests.testLabelUpdatesCompletedOutOfSequence2 is unstable Changed the test order to avoid instability of test testLabelUpdatesCompletedOutOfSequence2 which, if executed after testLabelUpdatesCompletedOutOfSequence1 sometimes fail (on my Windows machine it failed always). Change-Id: Ib4a5b5351de05a0b1f8171390fb19339fa9edca6 Signed-off-by: Andrey Loskutov <loskutov@gmx.de>
2017-10-03Bug 439017 - use timeout while waiting on conditionI20171008-2000I20171007-1500I20171006-2000I20171005-2000I20171004-2000I20171004-0315I20171003-2000Andrey Loskutov24-1978/+662
Introduced TestUtil.waitWhile() and AbstractDebugTest.waitWhile() methods to allow tests to fail if some condition does not change after a given timeout. This should give some hints about test failures without crashing (DNF) entire test suite. Also introduced AbstractViewerModelTest to remove lot of copy/paste code from related tests. Change-Id: I435872c74482f86e87a42f286834200ef3b45bfe Signed-off-by: Andrey Loskutov <loskutov@gmx.de>
2017-09-13Bug 268608 - find/replace action disabled on first opening of consoleI20170915-1030Simeon Andreev1-0/+40
Whenever a new console page is opened, a FindReplaceAction is registered for this console page. The target of this action is set before the new console page is set as active. This results in either a disabled find/edit action, if there was no previous console page, or an action which targets the previously active console page. I.e. the user either cannot search in the new console page, or searches in an old one. This change ensures that the created FindReplaceAction has the correct target page: the target page is updated once the console page is activated by the ConsoleView. This fixes the bug. Change-Id: Ib59be79b361b91949e7ace4f4e1803b4039cad95 Signed-off-by: Simeon Andreev <simeon.danailov.andreev@gmail.com>
2017-09-08Revert "Bug 521038 - Replaced anonymous Runnable classes by lambda expression"Alexander Kurtakov4-51/+81
This reverts commit d8621eaf55a1e95ff894dda0a241af08cc6111fe. Change-Id: I30777d3cf90d9a14f5de5e599b8a0ceefe1c8292
2017-09-06Bug 521038 - Replaced anonymous Runnable classes by lambda expressionI20170906-2000I20170906-0815Karsten Thoms4-81/+51
Change-Id: Ia0d3478be72f514cce6e57cb679fa60668bdb23f Signed-off-by: Karsten Thoms <karsten.thoms@itemis.de>
2017-08-07Bug 519684 - don't execute post launch actions when adoptingMarkus Duft1-1/+4
When adopting already existing launches, the group should not execute that launches post launch action. Also notification about a launched group element can/must be inhibited. Change-Id: I3e162f376eb6a47a4580f4ddb20257962b33ed53 Signed-off-by: Markus Duft <markus.duft@ssi-schaefer.com>
2017-07-10Revert "4.8 Bundle version increase for debug.tests"Sarika Sinha2-2/+2
This reverts commit b5d5ed6c5129735e6a61245c626a44591d91c45e.
2017-07-104.8 Bundle version increase for debug.testsSarika Sinha2-2/+2
Change-Id: Ie0d1313a2f289f64278d7fec94b1141e804da1aa
2017-07-10Bug 518909 - Regression: IOConsoleOutputStream.setEncoding(String)Andreas Loth1-0/+7
cannot handle null argument anymore Change-Id: I5bb76e1c850a80b88f6f5e82a9e7fceacd6d6d8c Signed-off-by: Andreas Loth <andy_2639@justmail.de>
2017-07-04Bug 511607: Fix race condition in LaunchGroupTestsI20170709-2000I20170708-2000I20170707-2000I20170707-0530I20170706-2000I20170706-0630I20170705-2000I20170704-2000Markus Duft1-3/+10
LaunchGroup's .launch blocks until the awaited output is written. There is a chance that the thread is unable to set the 'finished' boolean to true before the test thread checks it. This can easily be reproduced with a breakpoint at 'finished.set' in the second thread. Change-Id: Iee056180a25e8078a6479bfef09de0359c78d298 Signed-off-by: Markus Duft <markus.duft@ssi-schaefer.com>
2017-07-03Bug 439017 - Replace TestHelper with TestUtilI20170703-2000Andrey Loskutov5-98/+66
Change-Id: I8de74690df87054e73e6ee8111a0f88bb6aea87f Signed-off-by: Andrey Loskutov <loskutov@gmx.de>
2017-07-03Bug 439017 - let all debug test extend AbstractDebugTestAndrey Loskutov30-93/+383
Added AbstractDebugTest and TestUtil, and let all debug tests extend AbstractDebugTest and properly report setup/teardown sequence. Change-Id: Id7e866a78c9653754d6bd8ba27dac02238c2fa0d Signed-off-by: Andrey Loskutov <loskutov@gmx.de>
2017-07-03Bug 517232 - Move debug tests to Java 8Andrey Loskutov4-9/+17
Change-Id: Idde41ce0e34370097d6d6915978e6ec28a7262c4 Signed-off-by: Andrey Loskutov <loskutov@gmx.de>
2017-06-22Bug 517929 - Update POMs in the master for 4.8 release I20170702-2000I20170701-2000I20170630-2000I20170630-0410I20170629-2000I20170629-0425I20170629-0210I20170628-2000I20170628-0310I20170627-2000I20170626-2000I20170625-2000I20170624-2000I20170623-2000I20170623-0110I20170622-2000I20170622-0950Alexander Kurtakov1-1/+1
Point to 4.8 parent pom. Change-Id: I684d6e01306c790b0ce3078cab9c962a5c9f9467 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
2017-06-08Increased bundle version for Photon (4.8)Y20170608-1000I20170610-0940Dani Megert2-3/+3
2017-06-05Bug 517740: [Launch Group] Externalisation of strings broke Group LaunchNoopur Gupta1-0/+1
UI Change-Id: I2acb3933ccc9ccfe2a90fd73014dc1ef0ecffb3d Signed-off-by: Noopur Gupta <noopur_gupta@in.ibm.com>
2017-05-05Bug 516076: Fixed comparator errors caused by GVT47 : Non-externalized ↵I20170507-2000I20170506-2000I20170505-2000Dani Megert1-0/+2
strings in Launch mode drop down list
2017-04-26Bug 511607 - don't use assertTrue(x == y), use assertEquals(x, y)Y20170427-1000I20170426-2000Andrey Loskutov1-8/+8
Change-Id: I03c07522e3bd963103e18f482770964d82eea6fe Signed-off-by: Andrey Loskutov <loskutov@gmx.de>
2017-03-19Bug 513790 - Compiler warnings in I20170316-2000 after moving to M6Y20170406-1000Y20170330-1000Y20170321-2315Y20170321-0120I20170412-2000I20170411-2000I20170411-0500I20170410-2000I20170409-2000I20170408-2000I20170407-2000I20170406-2000I20170405-2000I20170405-0300I20170405-0200I20170405-0130I20170404-2000I20170404-0840I20170404-0245I20170403-2000I20170402-2000I20170401-2000I20170331-2000I20170330-2000I20170329-2000I20170328-2000I20170327-2000I20170326-2000I20170325-2000I20170324-2000I20170323-2000I20170322-2000I20170321-2000I20170320-2000I20170319-2000Andrey Loskutov1-1/+1
compiler Change-Id: I8ed4bf58d11c23d054a950577add87415f3c910a Signed-off-by: Andrey Loskutov <loskutov@gmx.de>
2017-03-18Bug 511743 - CCE at ProcessConsolePageParticipant.getShowInContext()I20170318-2000Andrey Loskutov1-0/+6
Don't return Boolean.TRUE for few unrelated calls in test code. Change-Id: I64390af9a26badc978422dddbd7a67f9e3f91c6c Signed-off-by: Andrey Loskutov <loskutov@gmx.de>
2017-03-13Bug 513367 - IllegalStateException while decoding output to ConsoleI20170315-2000I20170315-0500I20170314-2000I20170313-2000Andreas Loth1-1/+54
Stream Change-Id: Ia205ed73daab72454193a33c7e3abf053186caa5 Signed-off-by: Andreas Loth <andy_2639@justmail.de>
2017-03-10Bug 511607 - Improve stability of launch group testsI20170310-2000Markus Duft1-6/+9
Change-Id: Ifa686d72f9629566b53f30ba47dee08c50d74cbe Signed-off-by: Markus Duft <markus.duft@ssi-schaefer.com>
2017-03-04Bug 507664 - IOConsoleOutputStream does not handle multi-byte charactersY20170309-1000S4_7_0_M6I20170308-2000I20170308-0800I20170307-2000I20170307-0800I20170307-0610I20170307-0450I20170307-0420I20170307-0410I20170307-0150I20170306-2000I20170306-0800I20170305-2000I20170304-2000Sarika Sinha1-0/+25
at buffer boundaries correctly Change-Id: Iee66ccfd74f93760b1c0e26c7114d4b48cee6324
2017-03-03Revert "Bug 507664 - IOConsoleOutputStream does not handle multi-byte ↵I20170303-2000Sarika Sinha1-3/+0
characters at buffer boundaries correctly" This reverts commit 5875ab13fa7cbd511932f98efcdeb50447d49d99.
2017-03-02Bug 507664 - IOConsoleOutputStream does not handle multi-byte charactersAndreas Loth1-0/+3
at buffer boundaries correctly Change-Id: Idfeabbcff7330541c5908ac4b3464a5cce1398ce Signed-off-by: Andreas Loth <andy_2639@justmail.de>
2017-03-01Bug 507664 - IOConsoleOutputStream does not handle multi-byte charactersI20170301-2000Andreas Loth5-43/+131
at buffer boundaries correctly Change-Id: Ib1651069ab6a1a09d26e0b33bfae2dc3aef2fd77 Signed-off-by: Andreas Loth <andy_2639@justmail.de>
2017-02-07Add missing copyright headers for recent changesY20170223-1000Y20170216-1515Y20170216-1450Y20170216-1000I20170228-2000I20170228-0330I20170228-0240I20170227-2000I20170226-2000I20170225-2000I20170224-2000I20170223-2000I20170222-2000I20170221-2000I20170220-2000I20170219-2000I20170218-2000I20170217-2000I20170216-2000I20170216-0140I20170215-2000I20170214-2200I20170214-2000I20170213-2000Markus Duft1-0/+10
Change-Id: I166699318948cff0bef1304aff7b635c5d0a5c6a Signed-off-by: Markus Duft <markus.duft@ssi-schaefer.com>
2017-02-06Bug 508718 - Allow groups to catch up with renames in launch configsMarkus Duft1-14/+18
This change registers a global listener in the LaunchManager that handles updating launch groups whenever a member of that group is renamed. This relies on the workings of the ILaunchmanager#getMovedFrom method. Change-Id: Ie1a617b6e826b0a1b6adb0a1b962dc18484f071a Signed-off-by: Markus Duft <markus.duft@ssi-schaefer.com>
2017-01-13Bug 510100 - [cleanup] Get rid of trailing white space in platform.debugY20170119-1000I20170119-2000I20170119-1010I20170119-0345I20170118-2000I20170118-1215I20170117-2000I20170116-2000I20170115-2000I20170114-2000I20170113-2000Andrey Loskutov47-431/+431
Also enabled "cleanup whitespace on save" actions for debug.ui and debug.tests bundles. Change-Id: I755b879ab1d49144a1bec3f4318dbb8b29521bb3 Signed-off-by: Andrey Loskutov <loskutov@gmx.de>

Back to the top