Ticket #1366 (closed enhancement: fixed)

Opened 11 months ago

Last modified 11 months ago

3d party QA software integration for Testing Tools

Reported by: Jani Laakso Owned by: Jani Laakso
Priority: undefined Milestone: Testing Tools 1.0
Component: Testing Tools Version:
Keywords: Cc: joonas.lehtinen@…, ville.ingman@…, jouni.koivuviita@…
Known Issue description:
Hours estimate: 14 Deadline (dd.mm.yyyy):
Known Issue version (since): Known Issue title:
Hours done: Depends to:
Affects documentation: no
Known Issue workaround:
Affects release notes: yes Contract:

Description

Customers have their own QA software such as Caliber (VM-Data has this), Cruise Control (-removed- * asks for this integration *) or even ANT / Maven.

Offer clean, simple and documented API for integration to other systems. It involves events and few helper commands

Events such as

  • Test case added, modified, deleted
  • Test case results received
  • Task started, finished
  • Testing host is OK / down

Commands could be such as

  • Make HTTP GET (Java has this, sample is enough)
  • Send email notification (we already got this implementation on TT Server)
  • Make System Process call: a'k'a execute any platform specific exe/script (Java has this, sample is enough)

Helper commands (no JDBC schema understanding is required)

  • Get all test case ID's for suite X
  • Get all test case results for test case X

Few simple HTTP GET REST API's might get handy (no authentication required)

  • execute task X, returns task run ID
  • print test case result IDs for given task run ID
  • print test case result for given test case result ID

(If configuration or datastore is required)

  • use same database
  • or even through config (commons class is excellent for simple / complex configuration files), editable by text editor

Rationality why I am suggesting integration API and not strict integration to product X,Y,Z:

  • customers can do their integration itself based on their environment: QA software, internal processes.
  • This is a high end "enterprise" feature and in any case would require considerable amount of configuration and most likely even TT Server tailoring.
  • Much later we may ask for customer created module and ask if we can integrate it to our product even better (if real business reason exists)

Opposite alternative is to do strict tailored integration to every specific system ensuring that "it just works" without too much of configuration. Requires multiple times more implementation and testing to get it right..

Change History

Changed 11 months ago by Jani Laakso

See also (wontfixed) #1337

Changed 11 months ago by Jani Laakso

Customers would have to implement our TT 3rd party integration interface and create single JAR which is added to TT Server installation folder.

Changed 11 months ago by Joonas Lehtinen

  • milestone set to Testing Tools 2

We'll implement simple plugin API in 1.0 and postpone actual plugins for customer projects or future versions.

Changed 11 months ago by Jani Laakso

  • milestone changed from Testing Tools 2.0 to Testing Tools 1.0

Doing this feature now, describing later here how it actually works..

Now when TT server is started, Jetty automatically initializes TT Servlet and starts RMI service for port 1099 and binds plugin API. Plugin customer definable by implementing com.itmill.testingtools.plugin.TestingToolsPlugin? class.

Changed 11 months ago by Jani Laakso

TT Server now has server-configuration.txt with a parameter which can be used to specify TT plug-in class.

#
# IT Mill Testing Tools Server configuration file
#

pluginClass = com.itmill.testingtools.plugin.example.TestingToolsPlugin

Changed 11 months ago by Jani Laakso

  • status changed from new to closed
  • resolution set to fixed

Seems to work robustly, here's results for running around 1700 tasks containing 3000 test scripts (test cases and test results). I got 3 errors for some reason (I can be that my environment had too big of an load).

Tested with 3 testing hosts (under VMWare) which executed different tests.

// should pass
            api.executeTask(new String[] { readFile("testscript1.txt") },
                    new boolean[] { true }, new int[] { 60 }, 0, 0);

            // first should pass, second fail, third pass
            api.executeTask(new String[] { readFile("testscript1.txt"),
                    readFile("testscript2.txt"), readFile("testscript1.txt") },
                    new boolean[] { true, false, true }, new int[] { 1200, 25,
                            120 }, 0, 1);

            // should pass
            api.executeTask(new String[] { readFile("testscript1.txt") },
                    new boolean[] { true }, new int[] { 60 }, 0, 2);

Result

MyClient: taskId=1370, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1372, status=FINISHED
MyClient: taskId=1372, script 1 passed.
COUNT=425

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1371, status=FINISHED
MyClient: taskId=1371, script 1 passed.
MyClient: taskId=1371, script 2 failed.
MyClient: taskId=1371, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1373, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1374, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1375, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1373, status=FINISHED
MyClient: taskId=1373, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1375, status=FINISHED
MyClient: taskId=1375, script 1 passed.
COUNT=426

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1374, status=FINISHED
MyClient: taskId=1374, script 1 passed.
MyClient: taskId=1374, script 2 failed.
MyClient: taskId=1374, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1376, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1377, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1378, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1376, status=FINISHED
MyClient: taskId=1376, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1378, status=FINISHED
MyClient: taskId=1378, script 1 passed.
COUNT=427

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1377, status=FINISHED
MyClient: taskId=1377, script 1 passed.
MyClient: taskId=1377, script 2 failed.
MyClient: taskId=1377, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1379, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1380, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1381, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1381, status=FINISHED
MyClient: taskId=1381, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1379, status=FINISHED
MyClient: taskId=1379, script 1 passed.
COUNT=428

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1380, status=FINISHED
MyClient: taskId=1380, script 1 passed.
MyClient: taskId=1380, script 2 failed.
MyClient: taskId=1380, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1382, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1383, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1384, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1382, status=FINISHED
MyClient: taskId=1382, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1384, status=FINISHED
MyClient: taskId=1384, script 1 passed.
COUNT=429

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1383, status=FINISHED
MyClient: taskId=1383, script 1 passed.
MyClient: taskId=1383, script 2 failed.
MyClient: taskId=1383, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1385, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1386, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1387, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1385, status=FINISHED
MyClient: taskId=1385, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1387, status=FINISHED
MyClient: taskId=1387, script 1 passed.
COUNT=430

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1386, status=FINISHED
MyClient: taskId=1386, script 1 passed.
MyClient: taskId=1386, script 2 failed.
MyClient: taskId=1386, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1388, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1389, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1390, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1388, status=FINISHED
MyClient: taskId=1388, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1390, status=FINISHED
MyClient: taskId=1390, script 1 passed.
COUNT=431

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1389, status=FINISHED
MyClient: taskId=1389, script 1 passed.
MyClient: taskId=1389, script 2 failed.
MyClient: taskId=1389, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1391, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1392, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1393, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1391, status=FINISHED
MyClient: taskId=1391, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1393, status=FINISHED
MyClient: taskId=1393, script 1 passed.
COUNT=432

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1392, status=FINISHED
MyClient: taskId=1392, script 1 passed.
MyClient: taskId=1392, script 2 failed.
MyClient: taskId=1392, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1394, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1395, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1396, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1394, status=FINISHED
MyClient: taskId=1394, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1396, status=FINISHED
MyClient: taskId=1396, script 1 passed.
COUNT=433

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1395, status=FINISHED
MyClient: taskId=1395, script 1 passed.
MyClient: taskId=1395, script 2 failed.
MyClient: taskId=1395, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1397, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1398, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1399, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1397, status=FINISHED
MyClient: taskId=1397, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1399, status=FINISHED
MyClient: taskId=1399, script 1 passed.
COUNT=434

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1398, status=FINISHED
MyClient: taskId=1398, script 1 passed.
MyClient: taskId=1398, script 2 failed.
MyClient: taskId=1398, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1400, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1401, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1402, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1400, status=FINISHED
MyClient: taskId=1400, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1402, status=FINISHED
MyClient: taskId=1402, script 1 passed.
COUNT=435

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1401, status=FINISHED
MyClient: taskId=1401, script 1 passed.
MyClient: taskId=1401, script 2 failed.
MyClient: taskId=1401, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1403, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1404, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1405, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1405, status=FINISHED
MyClient: taskId=1405, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1403, status=FINISHED
MyClient: taskId=1403, script 1 passed.
COUNT=436

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1404, status=FINISHED
MyClient: taskId=1404, script 1 passed.
MyClient: taskId=1404, script 2 failed.
MyClient: taskId=1404, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1406, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1407, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1408, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1406, status=FINISHED
MyClient: taskId=1406, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1408, status=FINISHED
MyClient: taskId=1408, script 1 passed.
COUNT=437

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1407, status=FINISHED
MyClient: taskId=1407, script 1 passed.
MyClient: taskId=1407, script 2 failed.
MyClient: taskId=1407, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1409, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1410, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1411, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1411, status=FINISHED
MyClient: taskId=1411, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1409, status=FINISHED
MyClient: taskId=1409, script 1 passed.
COUNT=438

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1410, status=FINISHED
MyClient: taskId=1410, script 1 passed.
MyClient: taskId=1410, script 2 failed.
MyClient: taskId=1410, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1412, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1413, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1414, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1412, status=FINISHED
MyClient: taskId=1412, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1414, status=FINISHED
MyClient: taskId=1414, script 1 passed.
COUNT=439

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1413, status=FINISHED
MyClient: taskId=1413, script 1 passed.
MyClient: taskId=1413, script 2 failed.
MyClient: taskId=1413, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1415, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1416, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1417, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1415, status=FINISHED
MyClient: taskId=1415, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1417, status=FINISHED
MyClient: taskId=1417, script 1 passed.
COUNT=440

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1416, status=FINISHED
MyClient: taskId=1416, script 1 passed.
MyClient: taskId=1416, script 2 failed.
MyClient: taskId=1416, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1418, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1419, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1420, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1418, status=FINISHED
MyClient: taskId=1418, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1420, status=FINISHED
MyClient: taskId=1420, script 1 passed.
COUNT=441

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1419, status=FINISHED
MyClient: taskId=1419, script 1 passed.
MyClient: taskId=1419, script 2 failed.
MyClient: taskId=1419, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1421, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1422, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1423, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1423, status=FINISHED
MyClient: taskId=1423, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1421, status=FINISHED
MyClient: taskId=1421, script 1 passed.
COUNT=442

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1422, status=FINISHED
MyClient: taskId=1422, script 1 passed.
MyClient: taskId=1422, script 2 failed.
MyClient: taskId=1422, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1424, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1425, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1426, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1424, status=FINISHED
MyClient: taskId=1424, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1426, status=FINISHED
MyClient: taskId=1426, script 1 passed.
COUNT=443

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1425, status=FINISHED
MyClient: taskId=1425, script 1 passed.
MyClient: taskId=1425, script 2 failed.
MyClient: taskId=1425, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1427, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1428, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1429, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1427, status=FINISHED
MyClient: taskId=1427, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1429, status=FINISHED
MyClient: taskId=1429, script 1 passed.
COUNT=444

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1428, status=FINISHED
MyClient: taskId=1428, script 1 passed.
MyClient: taskId=1428, script 2 failed.
MyClient: taskId=1428, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1430, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1431, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1432, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1430, status=FINISHED
MyClient: taskId=1430, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1432, status=FINISHED
MyClient: taskId=1432, script 1 passed.
COUNT=445

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1431, status=FINISHED
MyClient: taskId=1431, script 1 passed.
MyClient: taskId=1431, script 2 failed.
MyClient: taskId=1431, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1433, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1434, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1435, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1433, status=FINISHED
MyClient: taskId=1433, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1435, status=FINISHED
MyClient: taskId=1435, script 1 passed.
COUNT=446

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1434, status=FINISHED
MyClient: taskId=1434, script 1 passed.
MyClient: taskId=1434, script 2 failed.
MyClient: taskId=1434, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1436, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1437, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1438, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1436, status=FINISHED
MyClient: taskId=1436, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1438, status=FINISHED
MyClient: taskId=1438, script 1 passed.
COUNT=447

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1437, status=FINISHED
MyClient: taskId=1437, script 1 passed.
MyClient: taskId=1437, script 2 failed.
MyClient: taskId=1437, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1439, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1440, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1441, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1439, status=FINISHED
MyClient: taskId=1439, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1441, status=FINISHED
MyClient: taskId=1441, script 1 passed.
COUNT=448

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1440, status=FINISHED
MyClient: taskId=1440, script 1 passed.
MyClient: taskId=1440, script 2 failed.
MyClient: taskId=1440, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1442, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1443, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1444, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1442, status=FINISHED
MyClient: taskId=1442, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1444, status=FINISHED
MyClient: taskId=1444, script 1 passed.
COUNT=449

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1443, status=FINISHED
MyClient: taskId=1443, script 1 passed.
MyClient: taskId=1443, script 2 failed.
MyClient: taskId=1443, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1445, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1446, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1447, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1445, status=FINISHED
MyClient: taskId=1445, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1447, status=FINISHED
MyClient: taskId=1447, script 1 passed.
COUNT=450

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1446, status=FINISHED
MyClient: taskId=1446, script 1 passed.
MyClient: taskId=1446, script 2 failed.
MyClient: taskId=1446, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1448, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1449, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1450, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1448, status=FINISHED
MyClient: taskId=1448, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1450, status=FINISHED
MyClient: taskId=1450, script 1 passed.
COUNT=451

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1449, status=FINISHED
MyClient: taskId=1449, script 1 passed.
MyClient: taskId=1449, script 2 failed.
MyClient: taskId=1449, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1451, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1452, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1453, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1453, status=FINISHED
MyClient: taskId=1453, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1451, status=FINISHED
MyClient: taskId=1451, script 1 passed.
COUNT=452

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1452, status=FINISHED
MyClient: taskId=1452, script 1 passed.
MyClient: taskId=1452, script 2 failed.
MyClient: taskId=1452, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1454, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1455, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1456, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1454, status=FINISHED
MyClient: taskId=1454, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1456, status=FINISHED
MyClient: taskId=1456, script 1 passed.
COUNT=453

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1455, status=FINISHED
MyClient: taskId=1455, script 1 passed.
MyClient: taskId=1455, script 2 failed.
MyClient: taskId=1455, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1457, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1458, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1459, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1457, status=FINISHED
MyClient: taskId=1457, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1459, status=FINISHED
MyClient: taskId=1459, script 1 passed.
COUNT=454

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1458, status=FINISHED
MyClient: taskId=1458, script 1 passed.
MyClient: taskId=1458, script 2 failed.
MyClient: taskId=1458, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1460, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1461, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1462, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1460, status=FINISHED
MyClient: taskId=1460, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1462, status=FINISHED
MyClient: taskId=1462, script 1 passed.
COUNT=455

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1461, status=FINISHED
MyClient: taskId=1461, script 1 passed.
MyClient: taskId=1461, script 2 failed.
MyClient: taskId=1461, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1463, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1464, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1465, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1463, status=FINISHED
MyClient: taskId=1463, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1465, status=FINISHED
MyClient: taskId=1465, script 1 passed.
COUNT=456

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1464, status=FINISHED
MyClient: taskId=1464, script 1 passed.
MyClient: taskId=1464, script 2 failed.
MyClient: taskId=1464, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1466, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1467, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1468, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1466, status=FINISHED
MyClient: taskId=1466, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1468, status=FINISHED
MyClient: taskId=1468, script 1 passed.
COUNT=457

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1467, status=FINISHED
MyClient: taskId=1467, script 1 passed.
MyClient: taskId=1467, script 2 failed.
MyClient: taskId=1467, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1469, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1470, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1471, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1471, status=FINISHED
MyClient: taskId=1471, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1469, status=FINISHED
MyClient: taskId=1469, script 1 passed.
COUNT=458

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1470, status=FINISHED
MyClient: taskId=1470, script 1 passed.
MyClient: taskId=1470, script 2 failed.
MyClient: taskId=1470, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1472, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1473, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1474, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1472, status=FINISHED
MyClient: taskId=1472, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1474, status=FINISHED
MyClient: taskId=1474, script 1 passed.
COUNT=459

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1473, status=FINISHED
MyClient: taskId=1473, script 1 passed.
MyClient: taskId=1473, script 2 failed.
MyClient: taskId=1473, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1475, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1476, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1477, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1475, status=FINISHED
MyClient: taskId=1475, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1477, status=FINISHED
MyClient: taskId=1477, script 1 passed.
COUNT=460

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1476, status=FINISHED
MyClient: taskId=1476, script 1 passed.
MyClient: taskId=1476, script 2 failed.
MyClient: taskId=1476, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1478, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1479, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1480, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1478, status=FINISHED
MyClient: taskId=1478, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1480, status=FINISHED
MyClient: taskId=1480, script 1 passed.
COUNT=461

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1479, status=FINISHED
MyClient: taskId=1479, script 1 passed.
MyClient: taskId=1479, script 2 failed.
MyClient: taskId=1479, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1481, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1482, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1483, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1481, status=FINISHED
MyClient: taskId=1481, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1483, status=FINISHED
MyClient: taskId=1483, script 1 passed.
COUNT=462

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1482, status=FINISHED
MyClient: taskId=1482, script 1 passed.
MyClient: taskId=1482, script 2 failed.
MyClient: taskId=1482, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1484, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1485, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1486, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1484, status=FINISHED
MyClient: taskId=1484, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1486, status=FINISHED
MyClient: taskId=1486, script 1 passed.
COUNT=463

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1485, status=FINISHED
MyClient: taskId=1485, script 1 passed.
MyClient: taskId=1485, script 2 failed.
MyClient: taskId=1485, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1487, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1488, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1489, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1487, status=FINISHED
MyClient: taskId=1487, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1489, status=FINISHED
MyClient: taskId=1489, script 1 passed.
COUNT=464

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1488, status=FINISHED
MyClient: taskId=1488, script 1 passed.
MyClient: taskId=1488, script 2 failed.
MyClient: taskId=1488, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1490, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1491, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1492, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1490, status=FINISHED
MyClient: taskId=1490, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1492, status=FINISHED
MyClient: taskId=1492, script 1 passed.
COUNT=465

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1491, status=FINISHED
MyClient: taskId=1491, script 1 passed.
MyClient: taskId=1491, script 2 failed.
MyClient: taskId=1491, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1493, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1494, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1495, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1493, status=FINISHED
MyClient: taskId=1493, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1495, status=FINISHED
MyClient: taskId=1495, script 1 passed.
COUNT=466

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1494, status=FINISHED
MyClient: taskId=1494, script 1 passed.
MyClient: taskId=1494, script 2 failed.
MyClient: taskId=1494, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1496, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1497, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1498, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1498, status=FINISHED
MyClient: taskId=1498, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1497, status=FINISHED
MyClient: taskId=1497, script 1 passed.
MyClient: taskId=1497, script 2 failed.
MyClient: taskId=1497, script 3 passed.
COUNT=467

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=ERROR, taskId=1496, status=ERROR
active=1
MyClient: received taskEvent type=RUNNING, taskId=1499, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1500, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1501, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1499, status=FINISHED
MyClient: taskId=1499, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1501, status=FINISHED
MyClient: taskId=1501, script 1 passed.
COUNT=468

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1500, status=FINISHED
MyClient: taskId=1500, script 1 passed.
MyClient: taskId=1500, script 2 failed.
MyClient: taskId=1500, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1502, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1503, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1504, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1502, status=FINISHED
MyClient: taskId=1502, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1504, status=FINISHED
MyClient: taskId=1504, script 1 passed.
COUNT=469

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1503, status=FINISHED
MyClient: taskId=1503, script 1 passed.
MyClient: taskId=1503, script 2 failed.
MyClient: taskId=1503, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1505, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1506, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1507, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1507, status=FINISHED
MyClient: taskId=1507, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1505, status=FINISHED
MyClient: taskId=1505, script 1 passed.
COUNT=470

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1506, status=FINISHED
MyClient: taskId=1506, script 1 passed.
MyClient: taskId=1506, script 2 failed.
MyClient: taskId=1506, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1508, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1509, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1510, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1510, status=FINISHED
MyClient: taskId=1510, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1508, status=FINISHED
MyClient: taskId=1508, script 1 passed.
COUNT=471

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1509, status=FINISHED
MyClient: taskId=1509, script 1 passed.
MyClient: taskId=1509, script 2 failed.
MyClient: taskId=1509, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1511, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1512, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1513, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1511, status=FINISHED
MyClient: taskId=1511, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1513, status=FINISHED
MyClient: taskId=1513, script 1 passed.
COUNT=472

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1512, status=FINISHED
MyClient: taskId=1512, script 1 passed.
MyClient: taskId=1512, script 2 failed.
MyClient: taskId=1512, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1514, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1515, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1516, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1514, status=FINISHED
MyClient: taskId=1514, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1516, status=FINISHED
MyClient: taskId=1516, script 1 passed.
COUNT=473

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1515, status=FINISHED
MyClient: taskId=1515, script 1 passed.
MyClient: taskId=1515, script 2 failed.
MyClient: taskId=1515, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1517, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1518, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1519, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1517, status=FINISHED
MyClient: taskId=1517, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1519, status=FINISHED
MyClient: taskId=1519, script 1 passed.
COUNT=474

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1518, status=FINISHED
MyClient: taskId=1518, script 1 passed.
MyClient: taskId=1518, script 2 failed.
MyClient: taskId=1518, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1520, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1521, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1522, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1520, status=FINISHED
MyClient: taskId=1520, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1522, status=FINISHED
MyClient: taskId=1522, script 1 passed.
COUNT=475

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1521, status=FINISHED
MyClient: taskId=1521, script 1 passed.
MyClient: taskId=1521, script 2 failed.
MyClient: taskId=1521, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1523, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1524, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1525, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1523, status=FINISHED
MyClient: taskId=1523, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1525, status=FINISHED
MyClient: taskId=1525, script 1 passed.
COUNT=476

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1524, status=FINISHED
MyClient: taskId=1524, script 1 passed.
MyClient: taskId=1524, script 2 failed.
MyClient: taskId=1524, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1526, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1527, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1528, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1526, status=FINISHED
MyClient: taskId=1526, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1528, status=FINISHED
MyClient: taskId=1528, script 1 passed.
COUNT=477

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1527, status=FINISHED
MyClient: taskId=1527, script 1 passed.
MyClient: taskId=1527, script 2 failed.
MyClient: taskId=1527, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1529, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1530, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1531, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1529, status=FINISHED
MyClient: taskId=1529, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1531, status=FINISHED
MyClient: taskId=1531, script 1 passed.
COUNT=478

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1530, status=FINISHED
MyClient: taskId=1530, script 1 passed.
MyClient: taskId=1530, script 2 failed.
MyClient: taskId=1530, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1532, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1533, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1534, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1534, status=FINISHED
MyClient: taskId=1534, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1532, status=FINISHED
MyClient: taskId=1532, script 1 passed.
COUNT=479

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1533, status=FINISHED
MyClient: taskId=1533, script 1 passed.
MyClient: taskId=1533, script 2 failed.
MyClient: taskId=1533, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1535, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1536, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1537, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1535, status=FINISHED
MyClient: taskId=1535, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1537, status=FINISHED
MyClient: taskId=1537, script 1 passed.
COUNT=480

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1536, status=FINISHED
MyClient: taskId=1536, script 1 passed.
MyClient: taskId=1536, script 2 failed.
MyClient: taskId=1536, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1538, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1539, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1540, status=RUNNING
active=2
MyClient: received taskEvent type=ERROR, taskId=1538, status=ERROR
active=1
MyClient: received taskEvent type=ERROR, taskId=1540, status=ERROR
COUNT=481

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=ERROR, taskId=1539, status=ERROR
active=1
MyClient: received taskEvent type=RUNNING, taskId=1541, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1542, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1543, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1543, status=FINISHED
MyClient: taskId=1543, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1541, status=FINISHED
MyClient: taskId=1541, script 1 passed.
COUNT=482

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1542, status=FINISHED
MyClient: taskId=1542, script 1 passed.
MyClient: taskId=1542, script 2 failed.
MyClient: taskId=1542, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1544, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1545, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1546, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1544, status=FINISHED
MyClient: taskId=1544, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1546, status=FINISHED
MyClient: taskId=1546, script 1 passed.
COUNT=483

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1545, status=FINISHED
MyClient: taskId=1545, script 1 passed.
MyClient: taskId=1545, script 2 failed.
MyClient: taskId=1545, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1547, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1548, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1549, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1547, status=FINISHED
MyClient: taskId=1547, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1549, status=FINISHED
MyClient: taskId=1549, script 1 passed.
COUNT=484

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1548, status=FINISHED
MyClient: taskId=1548, script 1 passed.
MyClient: taskId=1548, script 2 failed.
MyClient: taskId=1548, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1550, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1551, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1552, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1550, status=FINISHED
MyClient: taskId=1550, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1552, status=FINISHED
MyClient: taskId=1552, script 1 passed.
COUNT=485

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1551, status=FINISHED
MyClient: taskId=1551, script 1 passed.
MyClient: taskId=1551, script 2 failed.
MyClient: taskId=1551, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1553, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1554, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1555, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1553, status=FINISHED
MyClient: taskId=1553, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1555, status=FINISHED
MyClient: taskId=1555, script 1 passed.
COUNT=486

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1554, status=FINISHED
MyClient: taskId=1554, script 1 passed.
MyClient: taskId=1554, script 2 failed.
MyClient: taskId=1554, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1556, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1557, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1558, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1556, status=FINISHED
MyClient: taskId=1556, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1558, status=FINISHED
MyClient: taskId=1558, script 1 passed.
COUNT=487

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1557, status=FINISHED
MyClient: taskId=1557, script 1 passed.
MyClient: taskId=1557, script 2 failed.
MyClient: taskId=1557, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1559, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1560, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1561, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1559, status=FINISHED
MyClient: taskId=1559, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1561, status=FINISHED
MyClient: taskId=1561, script 1 passed.
COUNT=488

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1560, status=FINISHED
MyClient: taskId=1560, script 1 passed.
MyClient: taskId=1560, script 2 failed.
MyClient: taskId=1560, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1562, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1563, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1564, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1562, status=FINISHED
MyClient: taskId=1562, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1564, status=FINISHED
MyClient: taskId=1564, script 1 passed.
COUNT=489

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1563, status=FINISHED
MyClient: taskId=1563, script 1 passed.
MyClient: taskId=1563, script 2 failed.
MyClient: taskId=1563, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1565, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1566, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1567, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1565, status=FINISHED
MyClient: taskId=1565, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1567, status=FINISHED
MyClient: taskId=1567, script 1 passed.
COUNT=490

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1566, status=FINISHED
MyClient: taskId=1566, script 1 passed.
MyClient: taskId=1566, script 2 failed.
MyClient: taskId=1566, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1568, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1569, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1570, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1568, status=FINISHED
MyClient: taskId=1568, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1570, status=FINISHED
MyClient: taskId=1570, script 1 passed.
COUNT=491

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1569, status=FINISHED
MyClient: taskId=1569, script 1 passed.
MyClient: taskId=1569, script 2 failed.
MyClient: taskId=1569, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1571, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1572, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1573, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1571, status=FINISHED
MyClient: taskId=1571, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1573, status=FINISHED
MyClient: taskId=1573, script 1 passed.
COUNT=492

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1572, status=FINISHED
MyClient: taskId=1572, script 1 passed.
MyClient: taskId=1572, script 2 failed.
MyClient: taskId=1572, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1574, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1575, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1576, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1574, status=FINISHED
MyClient: taskId=1574, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1576, status=FINISHED
MyClient: taskId=1576, script 1 passed.
COUNT=493

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1575, status=FINISHED
MyClient: taskId=1575, script 1 passed.
MyClient: taskId=1575, script 2 failed.
MyClient: taskId=1575, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1577, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1578, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1579, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1577, status=FINISHED
MyClient: taskId=1577, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1579, status=FINISHED
MyClient: taskId=1579, script 1 passed.
COUNT=494

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1578, status=FINISHED
MyClient: taskId=1578, script 1 passed.
MyClient: taskId=1578, script 2 failed.
MyClient: taskId=1578, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1580, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1581, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1582, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1580, status=FINISHED
MyClient: taskId=1580, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1582, status=FINISHED
MyClient: taskId=1582, script 1 passed.
COUNT=495

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1581, status=FINISHED
MyClient: taskId=1581, script 1 passed.
MyClient: taskId=1581, script 2 failed.
MyClient: taskId=1581, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1583, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1584, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1585, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1583, status=FINISHED
MyClient: taskId=1583, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1585, status=FINISHED
MyClient: taskId=1585, script 1 passed.
COUNT=496

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1584, status=FINISHED
MyClient: taskId=1584, script 1 passed.
MyClient: taskId=1584, script 2 failed.
MyClient: taskId=1584, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1586, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1587, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1588, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1586, status=FINISHED
MyClient: taskId=1586, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1588, status=FINISHED
MyClient: taskId=1588, script 1 passed.
COUNT=497

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1587, status=FINISHED
MyClient: taskId=1587, script 1 passed.
MyClient: taskId=1587, script 2 failed.
MyClient: taskId=1587, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1589, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1590, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1591, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1589, status=FINISHED
MyClient: taskId=1589, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1591, status=FINISHED
MyClient: taskId=1591, script 1 passed.
COUNT=498

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1590, status=FINISHED
MyClient: taskId=1590, script 1 passed.
MyClient: taskId=1590, script 2 failed.
MyClient: taskId=1590, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1592, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1593, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1594, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1592, status=FINISHED
MyClient: taskId=1592, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1594, status=FINISHED
MyClient: taskId=1594, script 1 passed.
COUNT=499

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1593, status=FINISHED
MyClient: taskId=1593, script 1 passed.
MyClient: taskId=1593, script 2 failed.
MyClient: taskId=1593, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1595, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1596, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1597, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1595, status=FINISHED
MyClient: taskId=1595, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1597, status=FINISHED
MyClient: taskId=1597, script 1 passed.
COUNT=500

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1596, status=FINISHED
MyClient: taskId=1596, script 1 passed.
MyClient: taskId=1596, script 2 failed.
MyClient: taskId=1596, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1598, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1599, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1600, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1598, status=FINISHED
MyClient: taskId=1598, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1600, status=FINISHED
MyClient: taskId=1600, script 1 passed.
COUNT=501

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1599, status=FINISHED
MyClient: taskId=1599, script 1 passed.
MyClient: taskId=1599, script 2 failed.
MyClient: taskId=1599, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1601, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1602, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1603, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1603, status=FINISHED
MyClient: taskId=1603, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1601, status=FINISHED
MyClient: taskId=1601, script 1 passed.
COUNT=502

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=ERROR, taskId=1602, status=ERROR
active=1
MyClient: received taskEvent type=RUNNING, taskId=1604, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1605, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1606, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1606, status=FINISHED
MyClient: taskId=1606, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1605, status=FINISHED
MyClient: taskId=1605, script 1 passed.
MyClient: taskId=1605, script 2 failed.
MyClient: taskId=1605, script 3 passed.
COUNT=503

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=ERROR, taskId=1604, status=ERROR
active=1
MyClient: received taskEvent type=RUNNING, taskId=1607, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1608, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1609, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1609, status=FINISHED
MyClient: taskId=1609, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1607, status=FINISHED
MyClient: taskId=1607, script 1 passed.
COUNT=504

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1608, status=FINISHED
MyClient: taskId=1608, script 1 passed.
MyClient: taskId=1608, script 2 failed.
MyClient: taskId=1608, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1610, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1611, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1612, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1610, status=FINISHED
MyClient: taskId=1610, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1612, status=FINISHED
MyClient: taskId=1612, script 1 passed.
COUNT=505

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1611, status=FINISHED
MyClient: taskId=1611, script 1 passed.
MyClient: taskId=1611, script 2 failed.
MyClient: taskId=1611, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1613, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1614, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1615, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1613, status=FINISHED
MyClient: taskId=1613, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1615, status=FINISHED
MyClient: taskId=1615, script 1 passed.
COUNT=506

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1614, status=FINISHED
MyClient: taskId=1614, script 1 passed.
MyClient: taskId=1614, script 2 failed.
MyClient: taskId=1614, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1616, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1617, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1618, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1616, status=FINISHED
MyClient: taskId=1616, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1618, status=FINISHED
MyClient: taskId=1618, script 1 passed.
COUNT=507

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1617, status=FINISHED
MyClient: taskId=1617, script 1 passed.
MyClient: taskId=1617, script 2 failed.
MyClient: taskId=1617, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1619, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1620, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1621, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1619, status=FINISHED
MyClient: taskId=1619, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1621, status=FINISHED
MyClient: taskId=1621, script 1 passed.
COUNT=508

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1620, status=FINISHED
MyClient: taskId=1620, script 1 passed.
MyClient: taskId=1620, script 2 failed.
MyClient: taskId=1620, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1622, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1623, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1624, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1622, status=FINISHED
MyClient: taskId=1622, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1624, status=FINISHED
MyClient: taskId=1624, script 1 passed.
COUNT=509

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1623, status=FINISHED
MyClient: taskId=1623, script 1 passed.
MyClient: taskId=1623, script 2 failed.
MyClient: taskId=1623, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1625, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1626, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1627, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1625, status=FINISHED
MyClient: taskId=1625, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1627, status=FINISHED
MyClient: taskId=1627, script 1 passed.
COUNT=510

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1626, status=FINISHED
MyClient: taskId=1626, script 1 passed.
MyClient: taskId=1626, script 2 failed.
MyClient: taskId=1626, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1628, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1629, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1630, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1628, status=FINISHED
MyClient: taskId=1628, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1630, status=FINISHED
MyClient: taskId=1630, script 1 passed.
COUNT=511

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1629, status=FINISHED
MyClient: taskId=1629, script 1 passed.
MyClient: taskId=1629, script 2 failed.
MyClient: taskId=1629, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1631, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1632, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1633, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1631, status=FINISHED
MyClient: taskId=1631, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1633, status=FINISHED
MyClient: taskId=1633, script 1 passed.
COUNT=512

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1632, status=FINISHED
MyClient: taskId=1632, script 1 passed.
MyClient: taskId=1632, script 2 failed.
MyClient: taskId=1632, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1634, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1635, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1636, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1634, status=FINISHED
MyClient: taskId=1634, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1636, status=FINISHED
MyClient: taskId=1636, script 1 passed.
COUNT=513

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1635, status=FINISHED
MyClient: taskId=1635, script 1 passed.
MyClient: taskId=1635, script 2 failed.
MyClient: taskId=1635, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1637, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1638, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1639, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1637, status=FINISHED
MyClient: taskId=1637, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1639, status=FINISHED
MyClient: taskId=1639, script 1 passed.
COUNT=514

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1638, status=FINISHED
MyClient: taskId=1638, script 1 passed.
MyClient: taskId=1638, script 2 failed.
MyClient: taskId=1638, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1640, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1641, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1642, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1640, status=FINISHED
MyClient: taskId=1640, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1642, status=FINISHED
MyClient: taskId=1642, script 1 passed.
COUNT=515

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1641, status=FINISHED
MyClient: taskId=1641, script 1 passed.
MyClient: taskId=1641, script 2 failed.
MyClient: taskId=1641, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1643, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1644, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1645, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1643, status=FINISHED
MyClient: taskId=1643, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1645, status=FINISHED
MyClient: taskId=1645, script 1 passed.
COUNT=516

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1644, status=FINISHED
MyClient: taskId=1644, script 1 passed.
MyClient: taskId=1644, script 2 failed.
MyClient: taskId=1644, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1646, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1647, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1648, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1646, status=FINISHED
MyClient: taskId=1646, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1648, status=FINISHED
MyClient: taskId=1648, script 1 passed.
COUNT=517

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1647, status=FINISHED
MyClient: taskId=1647, script 1 passed.
MyClient: taskId=1647, script 2 failed.
MyClient: taskId=1647, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1649, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1650, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1651, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1649, status=FINISHED
MyClient: taskId=1649, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1651, status=FINISHED
MyClient: taskId=1651, script 1 passed.
COUNT=518

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1650, status=FINISHED
MyClient: taskId=1650, script 1 passed.
MyClient: taskId=1650, script 2 failed.
MyClient: taskId=1650, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1652, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1653, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1654, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1652, status=FINISHED
MyClient: taskId=1652, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1654, status=FINISHED
MyClient: taskId=1654, script 1 passed.
COUNT=519

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1653, status=FINISHED
MyClient: taskId=1653, script 1 passed.
MyClient: taskId=1653, script 2 failed.
MyClient: taskId=1653, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1655, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1656, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1657, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1655, status=FINISHED
MyClient: taskId=1655, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1657, status=FINISHED
MyClient: taskId=1657, script 1 passed.
COUNT=520

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1656, status=FINISHED
MyClient: taskId=1656, script 1 passed.
MyClient: taskId=1656, script 2 failed.
MyClient: taskId=1656, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1658, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1659, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1660, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1658, status=FINISHED
MyClient: taskId=1658, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1660, status=FINISHED
MyClient: taskId=1660, script 1 passed.
COUNT=521

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1659, status=FINISHED
MyClient: taskId=1659, script 1 passed.
MyClient: taskId=1659, script 2 failed.
MyClient: taskId=1659, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1661, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1662, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1663, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1661, status=FINISHED
MyClient: taskId=1661, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1663, status=FINISHED
MyClient: taskId=1663, script 1 passed.
COUNT=522

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1662, status=FINISHED
MyClient: taskId=1662, script 1 passed.
MyClient: taskId=1662, script 2 failed.
MyClient: taskId=1662, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1664, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1665, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1666, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1664, status=FINISHED
MyClient: taskId=1664, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1666, status=FINISHED
MyClient: taskId=1666, script 1 passed.
COUNT=523

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1665, status=FINISHED
MyClient: taskId=1665, script 1 passed.
MyClient: taskId=1665, script 2 failed.
MyClient: taskId=1665, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1667, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1668, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1669, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1667, status=FINISHED
MyClient: taskId=1667, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1669, status=FINISHED
MyClient: taskId=1669, script 1 passed.
COUNT=524

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1668, status=FINISHED
MyClient: taskId=1668, script 1 passed.
MyClient: taskId=1668, script 2 failed.
MyClient: taskId=1668, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1670, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1671, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1672, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1670, status=FINISHED
MyClient: taskId=1670, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1672, status=FINISHED
MyClient: taskId=1672, script 1 passed.
COUNT=525

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1671, status=FINISHED
MyClient: taskId=1671, script 1 passed.
MyClient: taskId=1671, script 2 failed.
MyClient: taskId=1671, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1673, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1674, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1675, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1673, status=FINISHED
MyClient: taskId=1673, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1675, status=FINISHED
MyClient: taskId=1675, script 1 passed.
COUNT=526

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1674, status=FINISHED
MyClient: taskId=1674, script 1 passed.
MyClient: taskId=1674, script 2 failed.
MyClient: taskId=1674, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1676, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1677, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1678, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1676, status=FINISHED
MyClient: taskId=1676, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1678, status=FINISHED
MyClient: taskId=1678, script 1 passed.
COUNT=527

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1677, status=FINISHED
MyClient: taskId=1677, script 1 passed.
MyClient: taskId=1677, script 2 failed.
MyClient: taskId=1677, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1679, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1680, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1681, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1679, status=FINISHED
MyClient: taskId=1679, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1681, status=FINISHED
MyClient: taskId=1681, script 1 passed.
COUNT=528

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1680, status=FINISHED
MyClient: taskId=1680, script 1 passed.
MyClient: taskId=1680, script 2 failed.
MyClient: taskId=1680, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1682, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1683, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1684, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1682, status=FINISHED
MyClient: taskId=1682, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1684, status=FINISHED
MyClient: taskId=1684, script 1 passed.
COUNT=529

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1683, status=FINISHED
MyClient: taskId=1683, script 1 passed.
MyClient: taskId=1683, script 2 failed.
MyClient: taskId=1683, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1685, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1686, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1687, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1685, status=FINISHED
MyClient: taskId=1685, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1687, status=FINISHED
MyClient: taskId=1687, script 1 passed.
COUNT=530

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=ERROR, taskId=1686, status=ERROR
active=1
MyClient: received taskEvent type=RUNNING, taskId=1688, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1689, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1690, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1690, status=FINISHED
MyClient: taskId=1690, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1688, status=FINISHED
MyClient: taskId=1688, script 1 passed.
COUNT=531

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=FINISHED, taskId=1689, status=FINISHED
MyClient: taskId=1689, script 1 passed.
MyClient: taskId=1689, script 2 failed.
MyClient: taskId=1689, script 3 passed.
active=1
MyClient: received taskEvent type=RUNNING, taskId=1691, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1692, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1693, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1693, status=FINISHED
MyClient: taskId=1693, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1691, status=FINISHED
MyClient: taskId=1691, script 1 passed.
COUNT=532

MyClient: Launching three tasks and letting event listener to handle results:
active=0
MyClient: received taskEvent type=ERROR, taskId=1692, status=ERROR
active=1
MyClient: received taskEvent type=RUNNING, taskId=1694, status=RUNNING
active=2
MyClient: received taskEvent type=RUNNING, taskId=1695, status=RUNNING
active=3
MyClient: received taskEvent type=RUNNING, taskId=1696, status=RUNNING
active=2
MyClient: received taskEvent type=FINISHED, taskId=1694, status=FINISHED
MyClient: taskId=1694, script 1 passed.
active=1
MyClient: received taskEvent type=FINISHED, taskId=1696, status=FINISHED
MyClient: taskId=1696, script 1 passed.
COUNT=533

MyClient: Launching three tasks and letting event listener to handle results:
Note: See TracTickets for help on using tickets.