aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-process/src/test/java/org/sonar/process/DefaultProcessCommandsTest.java
Commit message (Collapse)AuthorAgeFilesLines
* SONAR-9590 move shared memory file classes to dedicated packageSébastien Lesaint2017-09-051-245/+0
|
* SONAR-8637 Update POM parent versionTeryk Bellahsene2017-02-101-2/+2
|
* fix coverage of DefaultProcessCommandsSébastien Lesaint2016-08-251-38/+85
|
* fix quality flawsSébastien Lesaint2016-05-201-0/+20
|
* SONAR-7422 add DefaultProcessCommand#reset()Sébastien Lesaint2016-05-181-1/+18
|
* SONAR-7435 SQ processes should have constant process idsSébastien Lesaint2016-03-211-0/+9
| | | | remove process id generation from JavaCommand
* SONAR-7435 replace DefaultProcessCommands constructors by static methodsSébastien Lesaint2016-03-211-15/+34
|
* SONAR-7435 rename state when process is done starting from ready to upSébastien Lesaint2016-03-211-3/+3
| | | | also clean up code of DefaultProcessCommands and fix it's Javadoc which was out of sync with implementation
* Fix project title in copyright headersSimon Brandhof2016-01-131-1/+1
|
* SONAR-7168 fix stop during restart not workingSébastien Lesaint2016-01-131-29/+22
| | | | | lifeCycle transition from RESTARTING to STOPPING should actually _not_ be allowed because it can occur when restarting child processes (the WatcherThreads detects that stop and tries to shutdown all other processes), this fixes the issue by adding a HARD_STOPPING state, representing a not gracefull stop, to which transition from RESTARTING is allowed adds class AllProcessesCommands which implements access to sharedMemory for any process and is now used as the underlying implementation of DefaultProcessCommands. This class allows using a single IO to access sharedMemory from App
* SONAR-7168 add restart request support to ProcessCommandsSébastien Lesaint2016-01-131-5/+48
|
* Upgrade to parent 26 and new copyright headersSimon Brandhof2016-01-051-4/+4
|
* Extract an interface from org.sonar.process.ProcessCommandsSimon Brandhof2015-05-291-0/+97
Try to stabilize StopWatcherTest when machine is slow or under pressure. More than 1 second could be spent in the creation of ProcessCommands mock.