Hi Erich,René
OSx installs on a case insensitive file system
“pwd” reports the working directory with the casing used in the “cd” commands
while directory() probably chases the directory chain
the proper approach might be to find out if the file system is case sensitive
or not
and do a caseless compare
now… how to find if a file system is case sensitive is a different can of worms
because it depends on the file system definition not on the operating system
( apple diskutil when formatting a device/partition wants to know the file
system type and the casing )
so the test should be based on the POSSIBILITY that the file system could be
case insensitive
and do a caseless compare
sorry for the long rambling
cheers
enrico
> On 28 Feb 2018, at 12:00, René Jansen <rvjan...@xs4all.nl> wrote:
>
> The one failing test is a case sensitive check - someone has to look into
> that. The test might be wrong.
>
> René.
>
> On 28 Feb 2018, at 02:59, "oor...@jonases.se <mailto:oor...@jonases.se>"
> <oor...@jonases.se <mailto:oor...@jonases.se>> wrote:
>
>> Hello again, one additional information, here is the piece balking:
>>
>> ::method test_current_dir_filter
>>
>> -- Use a select to allow for expansion. When this test fails on a plaform
>> -- because cmd is not set correctly, then whoever investigates can add the
>> -- appropriate command for that platform. Note it is possible that we will
>> -- also need to test for the appropriate shell.
>> os = .ooRexxUnit.OSName
>> select
>> when os == 'WINDOWS' then cmd = 'cd'
>> -- other platforms are expected to be Unix-like and support "pwd"
>> otherwise cmd = 'pwd'
>> end
>>
>> cmd "| rxqueue"
>> count = queued()
>>
>> self~assertSame(1, count)
>>
>> -- Be sure we don't hang on the parse pull. If the assert fails the test
>> ends
>> -- and we won't hit the parse pull line.
>> self~assertTrue(count > 0)
>>
>> parse pull line
>> trueCurrentDir = directory()
>>
>> self~assertSame(trueCurrentDir, line)
>>
>> It is the assertSame that fails (on a mac running the latest build), hope it
>> helps
>>
>> Hälsningar/Regards/Grüsse,
>> P.O. Jonsson
>> oor...@jonases.se <mailto:oor...@jonases.se>
>> Von mein MacBookPro gesendet
>>
>>
>>
>>> Am 28.02.2018 um 07:55 schrieb oor...@jonases.se <mailto:oor...@jonases.se>:
>>>
>>> Hello René and thanks for the hint. After starting rxapi almost everything
>>> went through (i tried to launch it twice and it cofirmed it was running
>>> already). There is one test that failed, can you tell me what it is? I am
>>> just curious and if I can make the test suite run the installation must be
>>> pretty ok was my calculation.
>>>
>>> I will make a new build later today with debug activated but before that
>>> maybe you already have an answer to what is missing on my machine. The only
>>> step I am missing right now is the creation of a installer module, a dmg o
>>> pkg package that could be used more easily.
>>>
>>> POs-MacBook-Pro:ootest po$ sudo rxapi
>>> Error: There is already a server running.
>>> Aborting execution.
>>> POs-MacBook-Pro:ootest po$ rexx testOORexx -X native_api
>>> Searching for test containers....
>>> Executing automated test suite..
>>> ............................................
>>> ...........................................................................
>>> ............................sh: zxyabc: command not found
>>> ...sh: zxyabc: command not found
>>> ............
>>>
>>> ooTest Framework - Automated Test of the ooRexx Interpreter
>>>
>>> Interpreter: REXX-ooRexx_5.0.0(MT)_64-bit 6.05 27 Feb 2018
>>> OS Name: DARWIN
>>> SysVersion: Darwin Darwin Kernel Version 16.7.0: Thu Jan 11
>>> 22:59:40 PST 2018; root:xnu-3789.73.8~1/RELEASE_X86_64.16.7.0
>>>
>>> Tests ran: 22244
>>> Assertions: 374631
>>> Failures: 1
>>> Errors: 0
>>>
>>> [failure] [20180228 07:48:57.169976]
>>> svn: r11356 Change date: 2018-02-11 16:29:10 +0000
>>> Test: TEST_CURRENT_DIR_FILTER
>>> Class: rxQueue.testGroup
>>> File: /Users/po/ooTest/ooRexx/utilities/rxqueue/rxQueue.testGroup
>>> Line: 97
>>> Failed: assertSame
>>> Expected: [[/Users/po/ooTest], identityHash="-5290161185"]
>>> Actual: [[/Users/po/ootest], identityHash="-5290159905"]
>>>
>>> File search: 00:00:02.127513
>>> Suite construction: 00:00:00.894128
>>> Test execution: 00:03:49.352620
>>> Total time: 00:03:52.854981
>>>
>>> POs-MacBook-Pro:ootest po$
>>>
>>>
>>>
>>> Hälsningar/Regards/Grüsse,
>>> P.O. Jonsson
>>> oor...@jonases.se <mailto:oor...@jonases.se>
>>> Von mein MacBookPro gesendet
>>>
>>>
>>>
>>>> Am 27.02.2018 um 20:20 schrieb René Jansen <rvjan...@xs4all.nl
>>>> <mailto:rvjan...@xs4all.nl>>:
>>>>
>>>> Hi P.O.,
>>>>
>>>> for a large part of these errors, the cause is probably that you don’t
>>>> have rxapi running. You can start it with sudo rxapi from the command line.
>>>>
>>>> best regards,
>>>>
>>>> René.
>>>>
>>>>
>>>>> On 27 Feb 2018, at 13:02, oor...@jonases.se <mailto:oor...@jonases.se>
>>>>> wrote:
>>>>>
>>>>> Dear Developers,
>>>>>
>>>>> With the CMakeLists.txt from Enrico I could successfully make my own
>>>>> blend of ooRexx and install it in a place of my own choice. I have tried
>>>>> several places (for testing purposes) and my programs seems to run
>>>>> without any problems.
>>>>>
>>>>> I installed version 11361(today or yesterdays build) from a fresh SVN
>>>>> update and after CMake - make - make install into /opt/ooRexx5.0.0
>>>>>
>>>>> I then modified .bash_profile as follows Python was already present)
>>>>>
>>>>> # Setting PATH for Python 3.6
>>>>> # The original version is saved in .bash_profile.pysave
>>>>> PATH="/Library/Frameworks/Python.framework/Versions/3.6/bin:${PATH}"
>>>>>
>>>>> # Setting PATH for ooRexx
>>>>> PATH="/opt/ooRexx5.0.0/bin:/opt/ooRexx5.0.0/lib:/opt/ooRexx5.0.0/share:/opt/ooRexx5.0.0/include:${PATH}"
>>>>>
>>>>> # Setting PATH for ootest
>>>>> PATH="/user/po/ootest:/user/po/ootest/framework:${PATH}"
>>>>>
>>>>> # Setting PATH for ccache
>>>>> PATH="/usr/local/opt/ccache/libexec:${PATH}"
>>>>>
>>>>> export PATH
>>>>>
>>>>> And after that I could use ooRexx as „normal“, at least I think so.
>>>>>
>>>>> I have documented the steps necessary for the WIKI and will send them
>>>>> shortly (or should I amend the WIKI directly?
>>>>>
>>>>> That was the good news :-) The bad news is that although the installation
>>>>> seems to work and I can run the test suite (also from a fresh
>>>>> download/snapshot) It generates loads of error messages.
>>>>>
>>>>> I do not want you to go into detail but maybe from the list below you can
>>>>> identify where I have done something wrong? Per Aspera ad Astra…
>>>>>
>>>>>
>>>>> po$ echo $PATH
>>>>>
>>>>> /user/po/ootest:/user/po/ootest/framework:/opt/ooRexx5.0.0/bin:/opt/ooRexx5.0.0/lib:/Library/Frameworks/Python.framework/Versions/3.6/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/MacGPG2/bin
>>>>>
>>>>> po$ rexx -v
>>>>> Open Object Rexx Version 5.0.0
>>>>> Build date: Feb 27 2018
>>>>> Addressing mode: 64
>>>>> Copyright (c) 1995, 2004 IBM Corporation. All rights reserved.
>>>>> Copyright (c) 2005-2018 Rexx Language Association. All rights reserved.
>>>>> This program and the accompanying materials are made available under the
>>>>> terms
>>>>> of the Common Public License v1.0 which accompanies this distribution or
>>>>> at
>>>>> http://www.oorexx.org/license.html <http://www.oorexx.org/license.html>
>>>>>
>>>>> po$ rexx testOORexx -X native_api
>>>>> Searching for test containers.....
>>>>> Executing automated test suite..
>>>>> ............................................
>>>>> ..........................................................................
>>>>> REX121: Storage for data queues is exhausted.
>>>>> .
>>>>>
>>>>> REX121: Storage for data queues is exhausted.
>>>>>
>>>>> REX121: Storage for data queues is exhausted.
>>>>>
>>>>> REX121: Storage for data queues is exhausted.
>>>>> ............
>>>>> REX121: Storage for data queues is exhausted.
>>>>> sh: zxyabc: command not found
>>>>> ...sh: zxyabc: command not found
>>>>> ..........
>>>>> REX121: Storage for data queues is exhausted.
>>>>> .
>>>>> REX121: Storage for data queues is exhausted.
>>>>>
>>>>> REX121: Storage for data queues is exhausted.
>>>>> cat: stdout: Broken pipe
>>>>>
>>>>> REX121: Storage for data queues is exhausted.
>>>>> ..
>>>>>
>>>>> ooTest Framework - Automated Test of the ooRexx Interpreter
>>>>>
>>>>> Interpreter: REXX-ooRexx_5.0.0(MT)_64-bit 6.05 27 Feb 2018
>>>>> OS Name: DARWIN
>>>>> SysVersion: Darwin Darwin Kernel Version 16.7.0: Thu Jan 11
>>>>> 22:59:40 PST 2018; root:xnu-3789.73.8~1/RELEASE_X86_64.16.7.0
>>>>>
>>>>> Tests ran: 22244
>>>>> Assertions: 374387
>>>>> Failures: 27
>>>>> Errors: 25
>>>>>
>>>>> [failure] [20180227 15:14:43.422998]
>>>>> svn: r11306 Change date: 2017-10-07 18:21:20 +0000
>>>>> Test: TEST_EXISTS
>>>>> Class: RexxQueue.testGroup
>>>>> File: /Users/po/ooTest/ooRexx/base/class/RexxQueue.testGroup
>>>>> Line: 273
>>>>> Failed: assertTrue
>>>>> Expected: [1]
>>>>> Actual: [[0], identityHash="-4404320017"]
>>>>>
>>>>> [failure] [20180227 15:14:43.985149]
>>>>> svn: r11306 Change date: 2017-10-07 18:21:20 +0000
>>>>> Test: TEST_EXISTS4
>>>>> Class: RexxQueue.testGroup
>>>>> File: /Users/po/ooTest/ooRexx/base/class/RexxQueue.testGroup
>>>>> Line: 307
>>>>> Failed: assertTrue
>>>>> Expected: [1]
>>>>> Actual: [[0], identityHash="-4404320017"]
>>>>>
>>>>> [failure] [20180227 15:14:43.998864]
>>>>> svn: r11306 Change date: 2017-10-07 18:21:20 +0000
>>>>> Test: TEST_OPEN1
>>>>> Class: RexxQueue.testGroup
>>>>> File: /Users/po/ooTest/ooRexx/base/class/RexxQueue.testGroup
>>>>> Line: 339
>>>>> Failed: assertSame
>>>>> Expected: [[0], identityHash="-4404373985"]
>>>>> Actual: [[1], identityHash="-4404319953"]
>>>>>
>>>>> [failure] [20180227 15:14:45.204295]
>>>>> svn: r11306 Change date: 2017-10-07 18:21:20 +0000
>>>>> Test: TEST_PUSH_EXTERNAL
>>>>> Class: RexxQueue.testGroup
>>>>> File: /Users/po/ooTest/ooRexx/base/class/RexxQueue.testGroup
>>>>> Line: 262
>>>>> Failed: assertEquals
>>>>> Expected: [[2], identityHash="-4404426033"]
>>>>> Actual: [[0], identityHash="-4404373985"]
>>>>> Message: subTest25: Queueing 2 adds two lines
>>>>>
>>>>> [failure] [20180227 15:14:47.345473]
>>>>> svn: r11306 Change date: 2017-10-07 18:21:20 +0000
>>>>> Test: TEST_QUEUE_EXTERNAL
>>>>> Class: RexxQueue.testGroup
>>>>> File: /Users/po/ooTest/ooRexx/base/class/RexxQueue.testGroup
>>>>> Line: 212
>>>>> Failed: assertEquals
>>>>> Expected: [[2], identityHash="-4404426033"]
>>>>> Actual: [[0], identityHash="-4404373985"]
>>>>> Message: subTest23: Queueing 2 adds two lines
>>>>>
>>>>> [failure] [20180227 15:15:07.378858]
>>>>> svn: r11313 Change date: 2017-10-16 19:05:54 +0000
>>>>> Test: TEST_ENVIRONMENT_UNIX
>>>>> Class: ADDRESS.testGroup
>>>>> File: /Users/po/ooTest/ooRexx/base/keyword/ADDRESS.testGroup
>>>>> Line: 253
>>>>> Failed: assertEquals
>>>>> Expected: [[sh], identityHash="-5368466737"]
>>>>> Actual: [[The NIL object], identityHash="-4404320081"]
>>>>> Message: environment '' expected to return sh for echo $0
>>>>>
>>>>> [failure] [20180227 15:15:14.052815]
>>>>> svn: r11306 Change date: 2017-10-07 18:21:20 +0000
>>>>> Test: TEST_ADD_THREE_ARGS_OPTION
>>>>> Class: Macrospace.testGroup
>>>>> File: /Users/po/ooTest/ooRexx/base/rexxutil/Macrospace.testGroup
>>>>> Line: 173
>>>>> Failed: assertEquals
>>>>> Expected: [[0], identityHash="-4534419297"]
>>>>> Actual: [[1], identityHash="-4404381409"]
>>>>>
>>>>> [failure] [20180227 15:15:14.055066]
>>>>> svn: r11306 Change date: 2017-10-07 18:21:20 +0000
>>>>> Test: TEST_ADD_THREE_ARGS_OPTION_AFTER
>>>>> Class: Macrospace.testGroup
>>>>> File: /Users/po/ooTest/ooRexx/base/rexxutil/Macrospace.testGroup
>>>>> Line: 188
>>>>> Failed: assertEquals
>>>>> Expected: [[0], identityHash="-4534419297"]
>>>>> Actual: [[1], identityHash="-4404381409"]
>>>>>
>>>>> [failure] [20180227 15:15:14.056996]
>>>>> svn: r11306 Change date: 2017-10-07 18:21:20 +0000
>>>>> Test: TEST_ADD_THREE_ARGS_OPTION_BEFORE
>>>>> Class: Macrospace.testGroup
>>>>> File: /Users/po/ooTest/ooRexx/base/rexxutil/Macrospace.testGroup
>>>>> Line: 181
>>>>> Failed: assertEquals
>>>>> Expected: [[0], identityHash="-4534419297"]
>>>>> Actual: [[1], identityHash="-4404381409"]
>>>>>
>>>>> [failure] [20180227 15:15:14.058914]
>>>>> svn: r11306 Change date: 2017-10-07 18:21:20 +0000
>>>>> Test: TEST_ADD_THREE_ARGS_OPTION_REPLACE
>>>>> Class: Macrospace.testGroup
>>>>> File: /Users/po/ooTest/ooRexx/base/rexxutil/Macrospace.testGroup
>>>>> Line: 194
>>>>> Failed: assertEquals
>>>>> Expected: [[0], identityHash="-4534419297"]
>>>>> Actual: [[1], identityHash="-4404381409"]
>>>>>
>>>>> [failure] [20180227 15:15:14.061093]
>>>>> svn: r11306 Change date: 2017-10-07 18:21:20 +0000
>>>>> Test: TEST_ADD_TWO_ARGS_DEFAULT
>>>>> Class: Macrospace.testGroup
>>>>> File: /Users/po/ooTest/ooRexx/base/rexxutil/Macrospace.testGroup
>>>>> Line: 166
>>>>> Failed: assertEquals
>>>>> Expected: [[0], identityHash="-4534419297"]
>>>>> Actual: [[1], identityHash="-4404381409"]
>>>>>
>>>>> [failure] [20180227 15:15:14.364122]
>>>>> svn: r11306 Change date: 2017-10-07 18:21:20 +0000
>>>>> Test: TEST_CLEAR
>>>>> Class: Macrospace.testGroup
>>>>> File: /Users/po/ooTest/ooRexx/base/rexxutil/Macrospace.testGroup
>>>>> Line: 281
>>>>> Failed: assertEquals
>>>>> Expected: [[0], identityHash="-4534419297"]
>>>>> Actual: [[1], identityHash="-4404381409"]
>>>>>
>>>>> [failure] [20180227 15:15:14.367650]
>>>>> svn: r11306 Change date: 2017-10-07 18:21:20 +0000
>>>>> Test: TEST_DROP
>>>>> Class: Macrospace.testGroup
>>>>> File: /Users/po/ooTest/ooRexx/base/rexxutil/Macrospace.testGroup
>>>>> Line: 214
>>>>> Failed: assertEquals
>>>>> Expected: [[0], identityHash="-4534419297"]
>>>>> Actual: [[1], identityHash="-4404381409"]
>>>>>
>>>>> [failure] [20180227 15:15:14.371367]
>>>>> svn: r11306 Change date: 2017-10-07 18:21:20 +0000
>>>>> Test: TEST_LOAD
>>>>> Class: Macrospace.testGroup
>>>>> File: /Users/po/ooTest/ooRexx/base/rexxutil/Macrospace.testGroup
>>>>> Line: 308
>>>>> Failed: assertEquals
>>>>> Expected: [[0], identityHash="-4534419297"]
>>>>> Actual: [[1], identityHash="-4404381409"]
>>>>>
>>>>> [failure] [20180227 15:15:14.378976]
>>>>> svn: r11306 Change date: 2017-10-07 18:21:20 +0000
>>>>> Test: TEST_QUERY
>>>>> Class: Macrospace.testGroup
>>>>> File: /Users/po/ooTest/ooRexx/base/rexxutil/Macrospace.testGroup
>>>>> Line: 234
>>>>> Failed: assertEquals
>>>>> Expected: [[0], identityHash="-4534419297"]
>>>>> Actual: [[1], identityHash="-4404381409"]
>>>>>
>>>>> [failure] [20180227 15:15:14.383635]
>>>>> svn: r11306 Change date: 2017-10-07 18:21:20 +0000
>>>>> Test: TEST_REORDER
>>>>> Class: Macrospace.testGroup
>>>>> File: /Users/po/ooTest/ooRexx/base/rexxutil/Macrospace.testGroup
>>>>> Line: 265
>>>>> Failed: assertEquals
>>>>> Expected: [[0], identityHash="-4534419297"]
>>>>> Actual: [[1], identityHash="-4404381409"]
>>>>>
>>>>> [failure] [20180227 15:15:14.392858]
>>>>> svn: r11306 Change date: 2017-10-07 18:21:20 +0000
>>>>> Test: TEST_SAVE_EMPTY
>>>>> Class: Macrospace.testGroup
>>>>> File: /Users/po/ooTest/ooRexx/base/rexxutil/Macrospace.testGroup
>>>>> Line: 360
>>>>> Failed: assertEquals
>>>>> Expected: [[0], identityHash="-4534419297"]
>>>>> Actual: [[1], identityHash="-4404381409"]
>>>>>
>>>>> [failure] [20180227 15:15:17.377501]
>>>>> svn: r11306 Change date: 2017-10-07 18:21:20 +0000
>>>>> Test: TEST_EXECIO_DISKR_DEFAULT
>>>>> Class: hostemu.testgroup
>>>>> File: /Users/po/ooTest/ooRexx/extensions/hostemu/hostemu.testGroup
>>>>> Line: 145
>>>>> Failed: assertEquals
>>>>> Expected: [[303], identityHash="-4508018561"]
>>>>> Actual: [[0], identityHash="-4404373985"]
>>>>>
>>>>> [failure] [20180227 15:15:19.381526]
>>>>> svn: r11306 Change date: 2017-10-07 18:21:20 +0000
>>>>> Test: TEST_EXECIO_DISKR_FIFO
>>>>> Class: hostemu.testgroup
>>>>> File: /Users/po/ooTest/ooRexx/extensions/hostemu/hostemu.testGroup
>>>>> Line: 157
>>>>> Failed: assertEquals
>>>>> Expected: [[303], identityHash="-4508018561"]
>>>>> Actual: [[0], identityHash="-4404373985"]
>>>>>
>>>>> [failure] [20180227 15:15:23.298474]
>>>>> svn: r11306 Change date: 2017-10-07 18:21:20 +0000
>>>>> Test: TEST_EXECIO_DISKR_LIFO
>>>>> Class: hostemu.testgroup
>>>>> File: /Users/po/ooTest/ooRexx/extensions/hostemu/hostemu.testGroup
>>>>> Line: 169
>>>>> Failed: assertEquals
>>>>> Expected: [[303], identityHash="-4508018561"]
>>>>> Actual: [[0], identityHash="-4404373985"]
>>>>>
>>>>> [failure] [20180227 15:15:23.302593]
>>>>> svn: r11306 Change date: 2017-10-07 18:21:20 +0000
>>>>> Test: TEST_EXECIO_DISKR_START_AT_THREE_READ_FOUR_FIFO
>>>>> Class: hostemu.testgroup
>>>>> File: /Users/po/ooTest/ooRexx/extensions/hostemu/hostemu.testGroup
>>>>> Line: 227
>>>>> Failed: assertEquals
>>>>> Expected: [[4], identityHash="-4404601393"]
>>>>> Actual: [[0], identityHash="-4404373985"]
>>>>>
>>>>> [failure] [20180227 15:15:25.431365]
>>>>> svn: r11306 Change date: 2017-10-07 18:21:20 +0000
>>>>> Test: TEST_EXECIO_DISKR_START_AT_TWO_FIFO
>>>>> Class: hostemu.testgroup
>>>>> File: /Users/po/ooTest/ooRexx/extensions/hostemu/hostemu.testGroup
>>>>> Line: 207
>>>>> Failed: assertEquals
>>>>> Expected: [[302], identityHash="-5365525617"]
>>>>> Actual: [[0], identityHash="-4404373985"]
>>>>>
>>>>> [failure] [20180227 15:15:25.438954]
>>>>> svn: r11306 Change date: 2017-10-07 18:21:20 +0000
>>>>> Test: TEST_EXECIO_DISKR_TWO_LINES_FIFO
>>>>> Class: hostemu.testgroup
>>>>> File: /Users/po/ooTest/ooRexx/extensions/hostemu/hostemu.testGroup
>>>>> Line: 188
>>>>> Failed: assertEquals
>>>>> Expected: [[2], identityHash="-4404426033"]
>>>>> Actual: [[0], identityHash="-4404373985"]
>>>>>
>>>>> [failure] [20180227 15:15:35.876830]
>>>>> svn: r11356 Change date: 2018-02-11 16:29:10 +0000
>>>>> Test: TEST_CURRENT_DIR_FILTER
>>>>> Class: rxQueue.testGroup
>>>>> File: /Users/po/ooTest/ooRexx/utilities/rxqueue/rxQueue.testGroup
>>>>> Line: 88
>>>>> Failed: assertSame
>>>>> Expected: [[1], identityHash="-4404381409"]
>>>>> Actual: [[0], identityHash="-4404373985"]
>>>>>
>>>>> [failure] [20180227 15:15:37.209258]
>>>>> svn: r11356 Change date: 2018-02-11 16:29:10 +0000
>>>>> Test: TEST_MULTI_LINES
>>>>> Class: rxQueue.testGroup
>>>>> File: /Users/po/ooTest/ooRexx/utilities/rxqueue/rxQueue.testGroup
>>>>> Line: 123
>>>>> Failed: assertSame
>>>>> Expected: [[5], identityHash="-4404609345"]
>>>>> Actual: [[0], identityHash="-4404373985"]
>>>>>
>>>>> [failure] [20180227 15:15:37.268274]
>>>>> svn: r11356 Change date: 2018-02-11 16:29:10 +0000
>>>>> Test: TEST_RXQUEUE_MAXIMUM_LINE_LENGTH
>>>>> Class: rxQueue.testGroup
>>>>> File: /Users/po/ooTest/ooRexx/utilities/rxqueue/rxQueue.testGroup
>>>>> Line: 190
>>>>> Failed: assertEquals
>>>>> Expected: [[2], identityHash="-4404426033"]
>>>>> Actual: [[0], identityHash="-4404373985"]
>>>>>
>>>>> [failure] [20180227 15:15:39.626826]
>>>>> svn: r11356 Change date: 2018-02-11 16:29:10 +0000
>>>>> Test: TEST_STDERR_TO_RXQUEUE
>>>>> Class: rxQueue.testGroup
>>>>> File: /Users/po/ooTest/ooRexx/utilities/rxqueue/rxQueue.testGroup
>>>>> Line: 163
>>>>> Failed: assertSame
>>>>> Expected: [[4], identityHash="-4404601393"]
>>>>> Actual: [[0], identityHash="-4404373985"]
>>>>>
>>>>> [error] [20180227 15:12:03.410316]
>>>>> svn: r11306 Change date: 2017-10-07 18:21:20 +0000
>>>>> Test: TEST003
>>>>> Class: QUEUED.testGroup
>>>>> File: /Users/po/ooTest/ooRexx/base/bif/QUEUED.testGroup
>>>>> Event: [SYNTAX 48.1] raised unexpectedly.
>>>>> Failure in system service: SYSTEM QUEUE.
>>>>> Line: 71
>>>>> *-* Compiled method "PUSH" with scope "RexxQueue".
>>>>> 71 *-* push 'A pushed line'
>>>>> *-* Compiled method "SEND" with scope "Message".
>>>>> 1631 *-* .message~new(self, methodName)~send
>>>>> 1609 *-* self~doTheTest(fName, aTestResult) -- carry out the testmethod
>>>>> 553 *-* test~execute(testResult, verbose)
>>>>> 553 *-* test~execute(testResult, verbose)
>>>>> 115 *-* suite~execute(testResult)
>>>>> 79 *-* retCode = 'worker.rex'(arguments)
>>>>>
>>>>> [error] [20180227 15:12:03.411586]
>>>>> svn: r11306 Change date: 2017-10-07 18:21:20 +0000
>>>>> Test: TEST004
>>>>> Class: QUEUED.testGroup
>>>>> File: /Users/po/ooTest/ooRexx/base/bif/QUEUED.testGroup
>>>>> Event: [SYNTAX 48.1] raised unexpectedly.
>>>>> Failure in system service: SYSTEM QUEUE.
>>>>> Line: 75
>>>>> *-* Compiled method "PUSH" with scope "RexxQueue".
>>>>> 75 *-* push 'A queue-d line'
>>>>> *-* Compiled method "SEND" with scope "Message".
>>>>> 1631 *-* .message~new(self, methodName)~send
>>>>> 1609 *-* self~doTheTest(fName, aTestResult) -- carry out the testmethod
>>>>> 553 *-* test~execute(testResult, verbose)
>>>>> 553 *-* test~execute(testResult, verbose)
>>>>> 115 *-* suite~execute(testResult)
>>>>> 79 *-* retCode = 'worker.rex'(arguments)
>>>>>
>>>>> [error] [20180227 15:12:03.412959]
>>>>> svn: r11306 Change date: 2017-10-07 18:21:20 +0000
>>>>> Test: TEST005
>>>>> Class: QUEUED.testGroup
>>>>> File: /Users/po/ooTest/ooRexx/base/bif/QUEUED.testGroup
>>>>> Event: [SYNTAX 48.1] raised unexpectedly.
>>>>> Failure in system service: SYSTEM QUEUE.
>>>>> Line: 80
>>>>> *-* Compiled method "PUSH" with scope "RexxQueue".
>>>>> 80 *-* push 'A queue-d line'
>>>>> *-* Compiled method "SEND" with scope "Message".
>>>>> 1631 *-* .message~new(self, methodName)~send
>>>>> 1609 *-* self~doTheTest(fName, aTestResult) -- carry out the testmethod
>>>>> 553 *-* test~execute(testResult, verbose)
>>>>> 553 *-* test~execute(testResult, verbose)
>>>>> 115 *-* suite~execute(testResult)
>>>>> 79 *-* retCode = 'worker.rex'(arguments)
>>>>>
>>>>> [error] [20180227 15:12:10.044808]
>>>>> svn: r11306 Change date: 2017-10-07 18:21:20 +0000
>>>>> Test: TEST_10
>>>>> Class: TIME.long.testGroup
>>>>> File: /Users/po/ooTest/ooRexx/base/bif/TIME.testGroup
>>>>> Event: [SYNTAX 48.1] raised unexpectedly.
>>>>> Failure in system service: SYSTEM QUEUE.
>>>>> Line: 2074
>>>>> *-* Compiled method "QUEUE" with scope "RexxQueue".
>>>>> 2187 *-* Queue cb2 cb3
>>>>> 2074 *-* Call SCBTIMEC
>>>>> *-* Compiled method "SEND" with scope "Message".
>>>>> 1631 *-* .message~new(self, methodName)~send
>>>>> 1609 *-* self~doTheTest(fName, aTestResult) -- carry out the testmethod
>>>>> 553 *-* test~execute(testResult, verbose)
>>>>> 553 *-* test~execute(testResult, verbose)
>>>>> 115 *-* suite~execute(testResult)
>>>>> 79 *-* retCode = 'worker.rex'(arguments)
>>>>>
>>>>> [error] [20180227 15:12:17.355286]
>>>>> svn: r11306 Change date: 2017-10-07 18:21:20 +0000
>>>>> Test: TEST_11
>>>>> Class: TIME.long.testGroup
>>>>> File: /Users/po/ooTest/ooRexx/base/bif/TIME.testGroup
>>>>> Event: [SYNTAX 48.1] raised unexpectedly.
>>>>> Failure in system service: SYSTEM QUEUE.
>>>>> Line: 2102
>>>>> *-* Compiled method "QUEUE" with scope "RexxQueue".
>>>>> 2203 *-* Queue cb5 cb6
>>>>> 2102 *-* Call SCBTIMED
>>>>> *-* Compiled method "SEND" with scope "Message".
>>>>> 1631 *-* .message~new(self, methodName)~send
>>>>> 1609 *-* self~doTheTest(fName, aTestResult) -- carry out the testmethod
>>>>> 553 *-* test~execute(testResult, verbose)
>>>>> 553 *-* test~execute(testResult, verbose)
>>>>> 115 *-* suite~execute(testResult)
>>>>> 79 *-* retCode = 'worker.rex'(arguments)
>>>>>
>>>>> [error] [20180227 15:12:44.383598]
>>>>> svn: r11306 Change date: 2017-10-07 18:21:20 +0000
>>>>> Test: TEST_4
>>>>> Class: TIME.long.testGroup
>>>>> File: /Users/po/ooTest/ooRexx/base/bif/TIME.testGroup
>>>>> Event: [SYNTAX 48.1] raised unexpectedly.
>>>>> Failure in system service: SYSTEM QUEUE.
>>>>> Line: 1910
>>>>> *-* Compiled method "QUEUE" with scope "RexxQueue".
>>>>> 2155 *-* Queue cb2 cb3
>>>>> 1910 *-* Call SCBTIMEA
>>>>> *-* Compiled method "SEND" with scope "Message".
>>>>> 1631 *-* .message~new(self, methodName)~send
>>>>> 1609 *-* self~doTheTest(fName, aTestResult) -- carry out the testmethod
>>>>> 553 *-* test~execute(testResult, verbose)
>>>>> 553 *-* test~execute(testResult, verbose)
>>>>> 115 *-* suite~execute(testResult)
>>>>> 79 *-* retCode = 'worker.rex'(arguments)
>>>>>
>>>>> [error] [20180227 15:12:51.693815]
>>>>> svn: r11306 Change date: 2017-10-07 18:21:20 +0000
>>>>> Test: TEST_5
>>>>> Class: TIME.long.testGroup
>>>>> File: /Users/po/ooTest/ooRexx/base/bif/TIME.testGroup
>>>>> Event: [SYNTAX 48.1] raised unexpectedly.
>>>>> Failure in system service: SYSTEM QUEUE.
>>>>> Line: 1938
>>>>> *-* Compiled method "QUEUE" with scope "RexxQueue".
>>>>> 2171 *-* Queue cb5 cb6
>>>>> 1938 *-* Call SCBTIMEB
>>>>> *-* Compiled method "SEND" with scope "Message".
>>>>> 1631 *-* .message~new(self, methodName)~send
>>>>> 1609 *-* self~doTheTest(fName, aTestResult) -- carry out the testmethod
>>>>> 553 *-* test~execute(testResult, verbose)
>>>>> 553 *-* test~execute(testResult, verbose)
>>>>> 115 *-* suite~execute(testResult)
>>>>> 79 *-* retCode = 'worker.rex'(arguments)
>>>>>
>>>>> [error] [20180227 15:14:43.421419]
>>>>> svn: r11306 Change date: 2017-10-07 18:21:20 +0000
>>>>> Test: TEST_EMPTY
>>>>> Class: RexxQueue.testGroup
>>>>> File: /Users/po/ooTest/ooRexx/base/class/RexxQueue.testGroup
>>>>> Event: [SYNTAX 48.1] raised unexpectedly.
>>>>> Failure in system service: SYSTEM QUEUE.
>>>>> Line: 520
>>>>> *-* Compiled method "QUEUE" with scope "RexxQueue".
>>>>> 520 *-* q~queue( n )
>>>>> *-* Compiled method "SEND" with scope "Message".
>>>>> 1631 *-* .message~new(self, methodName)~send
>>>>> 1609 *-* self~doTheTest(fName, aTestResult) -- carry out the testmethod
>>>>> 553 *-* test~execute(testResult, verbose)
>>>>> 553 *-* test~execute(testResult, verbose)
>>>>> 115 *-* suite~execute(testResult)
>>>>> 79 *-* retCode = 'worker.rex'(arguments)
>>>>>
>>>>> [error] [20180227 15:14:43.992002]
>>>>> svn: r11306 Change date: 2017-10-07 18:21:20 +0000
>>>>> Test: TEST_LINEIN
>>>>> Class: RexxQueue.testGroup
>>>>> File: /Users/po/ooTest/ooRexx/base/class/RexxQueue.testGroup
>>>>> Event: [SYNTAX 48.1] raised unexpectedly.
>>>>> Failure in system service: SYSTEM QUEUE.
>>>>> Line: 410
>>>>> *-* Compiled method "PUSH" with scope "RexxQueue".
>>>>> 410 *-* q~push('Item1')
>>>>> *-* Compiled method "SEND" with scope "Message".
>>>>> 1631 *-* .message~new(self, methodName)~send
>>>>> 1609 *-* self~doTheTest(fName, aTestResult) -- carry out the testmethod
>>>>> 553 *-* test~execute(testResult, verbose)
>>>>> 553 *-* test~execute(testResult, verbose)
>>>>> 115 *-* suite~execute(testResult)
>>>>> 79 *-* retCode = 'worker.rex'(arguments)
>>>>>
>>>>> [error] [20180227 15:14:43.994454]
>>>>> svn: r11306 Change date: 2017-10-07 18:21:20 +0000
>>>>> Test: TEST_LINEOUT
>>>>> Class: RexxQueue.testGroup
>>>>> File: /Users/po/ooTest/ooRexx/base/class/RexxQueue.testGroup
>>>>> Event: [SYNTAX 48.1] raised unexpectedly.
>>>>> Failure in system service: SYSTEM QUEUE.
>>>>> Program: REXX
>>>>> Line: 433
>>>>> *-* Compiled method "QUEUE" with scope "RexxQueue".
>>>>> 468 *-* Method LINEOUT with scope "RexxQueue" in package "REXX" (no
>>>>> source available).
>>>>> 433 *-* q~lineOut('Item1')
>>>>> *-* Compiled method "SEND" with scope "Message".
>>>>> 1631 *-* .message~new(self, methodName)~send
>>>>> 1609 *-* self~doTheTest(fName, aTestResult) -- carry out the testmethod
>>>>> 553 *-* test~execute(testResult, verbose)
>>>>> 553 *-* test~execute(testResult, verbose)
>>>>> 115 *-* suite~execute(testResult)
>>>>> 79 *-* retCode = 'worker.rex'(arguments)
>>>>>
>>>>> [error] [20180227 15:14:43.996519]
>>>>> svn: r11306 Change date: 2017-10-07 18:21:20 +0000
>>>>> Test: TEST_MAKEARRAY
>>>>> Class: RexxQueue.testGroup
>>>>> File: /Users/po/ooTest/ooRexx/base/class/RexxQueue.testGroup
>>>>> Event: [SYNTAX 48.1] raised unexpectedly.
>>>>> Failure in system service: SYSTEM QUEUE.
>>>>> Line: 496
>>>>> *-* Compiled method "QUEUE" with scope "RexxQueue".
>>>>> 496 *-* q~Queue('First')
>>>>> *-* Compiled method "SEND" with scope "Message".
>>>>> 1631 *-* .message~new(self, methodName)~send
>>>>> 1609 *-* self~doTheTest(fName, aTestResult) -- carry out the testmethod
>>>>> 553 *-* test~execute(testResult, verbose)
>>>>> 553 *-* test~execute(testResult, verbose)
>>>>> 115 *-* suite~execute(testResult)
>>>>> 79 *-* retCode = 'worker.rex'(arguments)
>>>>>
>>>>> [error] [20180227 15:14:44.005515]
>>>>> svn: r11306 Change date: 2017-10-07 18:21:20 +0000
>>>>> Test: TEST_PUSH
>>>>> Class: RexxQueue.testGroup
>>>>> File: /Users/po/ooTest/ooRexx/base/class/RexxQueue.testGroup
>>>>> Event: [SYNTAX 48.1] raised unexpectedly.
>>>>> Failure in system service: SYSTEM QUEUE.
>>>>> Line: 157
>>>>> *-* Compiled method "PUSH" with scope "RexxQueue".
>>>>> 157 *-* q~push(s)
>>>>> *-* Compiled method "SEND" with scope "Message".
>>>>> 1631 *-* .message~new(self, methodName)~send
>>>>> 1609 *-* self~doTheTest(fName, aTestResult) -- carry out the testmethod
>>>>> 553 *-* test~execute(testResult, verbose)
>>>>> 553 *-* test~execute(testResult, verbose)
>>>>> 115 *-* suite~execute(testResult)
>>>>> 79 *-* retCode = 'worker.rex'(arguments)
>>>>>
>>>>> [error] [20180227 15:14:45.206675]
>>>>> svn: r11306 Change date: 2017-10-07 18:21:20 +0000
>>>>> Test: TEST_QUEUE
>>>>> Class: RexxQueue.testGroup
>>>>> File: /Users/po/ooTest/ooRexx/base/class/RexxQueue.testGroup
>>>>> Event: [SYNTAX 48.1] raised unexpectedly.
>>>>> Failure in system service: SYSTEM QUEUE.
>>>>> Line: 137
>>>>> *-* Compiled method "QUEUE" with scope "RexxQueue".
>>>>> 137 *-* q~queue(s)
>>>>> *-* Compiled method "SEND" with scope "Message".
>>>>> 1631 *-* .message~new(self, methodName)~send
>>>>> 1609 *-* self~doTheTest(fName, aTestResult) -- carry out the testmethod
>>>>> 553 *-* test~execute(testResult, verbose)
>>>>> 553 *-* test~execute(testResult, verbose)
>>>>> 115 *-* suite~execute(testResult)
>>>>> 79 *-* retCode = 'worker.rex'(arguments)
>>>>>
>>>>> [error] [20180227 15:14:45.208808]
>>>>> svn: r11306 Change date: 2017-10-07 18:21:20 +0000
>>>>> Test: TEST_QUEUED
>>>>> Class: RexxQueue.testGroup
>>>>> File: /Users/po/ooTest/ooRexx/base/class/RexxQueue.testGroup
>>>>> Event: [SYNTAX 48.1] raised unexpectedly.
>>>>> Failure in system service: SYSTEM QUEUE.
>>>>> Line: 453
>>>>> *-* Compiled method "QUEUE" with scope "RexxQueue".
>>>>> 453 *-* q~queue( n )
>>>>> *-* Compiled method "SEND" with scope "Message".
>>>>> 1631 *-* .message~new(self, methodName)~send
>>>>> 1609 *-* self~doTheTest(fName, aTestResult) -- carry out the testmethod
>>>>> 553 *-* test~execute(testResult, verbose)
>>>>> 553 *-* test~execute(testResult, verbose)
>>>>> 115 *-* suite~execute(testResult)
>>>>> 79 *-* retCode = 'worker.rex'(arguments)
>>>>>
>>>>> [error] [20180227 15:14:47.360532]
>>>>> svn: r11306 Change date: 2017-10-07 18:21:20 +0000
>>>>> Test: TEST_SET
>>>>> Class: RexxQueue.testGroup
>>>>> File: /Users/po/ooTest/ooRexx/base/class/RexxQueue.testGroup
>>>>> Event: [SYNTAX 48.1] raised unexpectedly.
>>>>> Failure in system service: SYSTEM QUEUE.
>>>>> Line: 474
>>>>> *-* Compiled method "PUSH" with scope "RexxQueue".
>>>>> 474 *-* q1~push('Q1Item1')
>>>>> *-* Compiled method "SEND" with scope "Message".
>>>>> 1631 *-* .message~new(self, methodName)~send
>>>>> 1609 *-* self~doTheTest(fName, aTestResult) -- carry out the testmethod
>>>>> 553 *-* test~execute(testResult, verbose)
>>>>> 553 *-* test~execute(testResult, verbose)
>>>>> 115 *-* suite~execute(testResult)
>>>>> 79 *-* retCode = 'worker.rex'(arguments)
>>>>>
>>>>> [error] [20180227 15:15:07.383693]
>>>>> svn: r11306 Change date: 2017-10-07 18:21:20 +0000
>>>>> Test: TEST_3
>>>>> Class: ASSIGNMENT.testGroup
>>>>> File: /Users/po/ooTest/ooRexx/base/keyword/ASSIGNMENT.testGroup
>>>>> Event: [SYNTAX 48.1] raised unexpectedly.
>>>>> Failure in system service: SYSTEM QUEUE.
>>>>> Line: 292
>>>>> *-* Compiled method "QUEUE" with scope "RexxQueue".
>>>>> 292 *-* Queue ' ';
>>>>> *-* Compiled method "SEND" with scope "Message".
>>>>> 1631 *-* .message~new(self, methodName)~send
>>>>> 1609 *-* self~doTheTest(fName, aTestResult) -- carry out the testmethod
>>>>> 553 *-* test~execute(testResult, verbose)
>>>>> 553 *-* test~execute(testResult, verbose)
>>>>> 115 *-* suite~execute(testResult)
>>>>> 79 *-* retCode = 'worker.rex'(arguments)
>>>>>
>>>>> [error] [20180227 15:15:13.598206]
>>>>> svn: r11306 Change date: 2017-10-07 18:21:20 +0000
>>>>> Test: TEST_15
>>>>> Class: NUMERIC.testGroup
>>>>> File: /Users/po/ooTest/ooRexx/base/keyword/NUMERIC.testGroup
>>>>> Event: [SYNTAX 48.1] raised unexpectedly.
>>>>> Failure in system service: SYSTEM QUEUE.
>>>>> Line: 120
>>>>> *-* Compiled method "QUEUE" with scope "RexxQueue".
>>>>> 136 *-* Queue a2
>>>>> 120 *-* Call X
>>>>> *-* Compiled method "SEND" with scope "Message".
>>>>> 1631 *-* .message~new(self, methodName)~send
>>>>> 1609 *-* self~doTheTest(fName, aTestResult) -- carry out the testmethod
>>>>> 553 *-* test~execute(testResult, verbose)
>>>>> 553 *-* test~execute(testResult, verbose)
>>>>> 115 *-* suite~execute(testResult)
>>>>> 79 *-* retCode = 'worker.rex'(arguments)
>>>>>
>>>>> [error] [20180227 15:15:13.751080]
>>>>> svn: r11306 Change date: 2017-10-07 18:21:20 +0000
>>>>> Test: TEST_614
>>>>> Class: PARSE.testGroup
>>>>> File: /Users/po/ooTest/ooRexx/base/keyword/PARSE.testGroup
>>>>> Event: [SYNTAX 48.1] raised unexpectedly.
>>>>> Failure in system service: SYSTEM QUEUE.
>>>>> Line: 4306
>>>>> *-* Compiled method "QUEUE" with scope "RexxQueue".
>>>>> 4306 *-* Queue 'some string, or another'
>>>>> *-* Compiled method "SEND" with scope "Message".
>>>>> 1631 *-* .message~new(self, methodName)~send
>>>>> 1609 *-* self~doTheTest(fName, aTestResult) -- carry out the testmethod
>>>>> 553 *-* test~execute(testResult, verbose)
>>>>> 553 *-* test~execute(testResult, verbose)
>>>>> 115 *-* suite~execute(testResult)
>>>>> 79 *-* retCode = 'worker.rex'(arguments)
>>>>>
>>>>> [error] [20180227 15:15:13.754229]
>>>>> svn: r11306 Change date: 2017-10-07 18:21:20 +0000
>>>>> Test: TEST_620
>>>>> Class: PARSE.testGroup
>>>>> File: /Users/po/ooTest/ooRexx/base/keyword/PARSE.testGroup
>>>>> Event: [SYNTAX 48.1] raised unexpectedly.
>>>>> Failure in system service: SYSTEM QUEUE.
>>>>> Line: 4332
>>>>> *-* Compiled method "QUEUE" with scope "RexxQueue".
>>>>> 4332 *-* Queue 'some string, or another'
>>>>> *-* Compiled method "SEND" with scope "Message".
>>>>> 1631 *-* .message~new(self, methodName)~send
>>>>> 1609 *-* self~doTheTest(fName, aTestResult) -- carry out the testmethod
>>>>> 553 *-* test~execute(testResult, verbose)
>>>>> 553 *-* test~execute(testResult, verbose)
>>>>> 115 *-* suite~execute(testResult)
>>>>> 79 *-* retCode = 'worker.rex'(arguments)
>>>>>
>>>>> [error] [20180227 15:15:13.757032]
>>>>> svn: r11306 Change date: 2017-10-07 18:21:20 +0000
>>>>> Test: TEST_626
>>>>> Class: PARSE.testGroup
>>>>> File: /Users/po/ooTest/ooRexx/base/keyword/PARSE.testGroup
>>>>> Event: [SYNTAX 48.1] raised unexpectedly.
>>>>> Failure in system service: SYSTEM QUEUE.
>>>>> Line: 4359
>>>>> *-* Compiled method "QUEUE" with scope "RexxQueue".
>>>>> 4359 *-* Queue 'some string, or another'
>>>>> *-* Compiled method "SEND" with scope "Message".
>>>>> 1631 *-* .message~new(self, methodName)~send
>>>>> 1609 *-* self~doTheTest(fName, aTestResult) -- carry out the testmethod
>>>>> 553 *-* test~execute(testResult, verbose)
>>>>> 553 *-* test~execute(testResult, verbose)
>>>>> 115 *-* suite~execute(testResult)
>>>>> 79 *-* retCode = 'worker.rex'(arguments)
>>>>>
>>>>> [error] [20180227 15:15:13.760050]
>>>>> svn: r11306 Change date: 2017-10-07 18:21:20 +0000
>>>>> Test: TEST_632
>>>>> Class: PARSE.testGroup
>>>>> File: /Users/po/ooTest/ooRexx/base/keyword/PARSE.testGroup
>>>>> Event: [SYNTAX 48.1] raised unexpectedly.
>>>>> Failure in system service: SYSTEM QUEUE.
>>>>> Line: 4390
>>>>> *-* Compiled method "QUEUE" with scope "RexxQueue".
>>>>> 4390 *-* Queue 'some string, or another'
>>>>> *-* Compiled method "SEND" with scope "Message".
>>>>> 1631 *-* .message~new(self, methodName)~send
>>>>> 1609 *-* self~doTheTest(fName, aTestResult) -- carry out the testmethod
>>>>> 553 *-* test~execute(testResult, verbose)
>>>>> 553 *-* test~execute(testResult, verbose)
>>>>> 115 *-* suite~execute(testResult)
>>>>> 79 *-* retCode = 'worker.rex'(arguments)
>>>>>
>>>>> [error] [20180227 15:15:13.763384]
>>>>> svn: r11306 Change date: 2017-10-07 18:21:20 +0000
>>>>> Test: TEST_638
>>>>> Class: PARSE.testGroup
>>>>> File: /Users/po/ooTest/ooRexx/base/keyword/PARSE.testGroup
>>>>> Event: [SYNTAX 48.1] raised unexpectedly.
>>>>> Failure in system service: SYSTEM QUEUE.
>>>>> Line: 4422
>>>>> *-* Compiled method "QUEUE" with scope "RexxQueue".
>>>>> 4422 *-* Queue i
>>>>> *-* Compiled method "SEND" with scope "Message".
>>>>> 1631 *-* .message~new(self, methodName)~send
>>>>> 1609 *-* self~doTheTest(fName, aTestResult) -- carry out the testmethod
>>>>> 553 *-* test~execute(testResult, verbose)
>>>>> 553 *-* test~execute(testResult, verbose)
>>>>> 115 *-* suite~execute(testResult)
>>>>> 79 *-* retCode = 'worker.rex'(arguments)
>>>>>
>>>>> [error] [20180227 15:15:13.930903]
>>>>> svn: r11306 Change date: 2017-10-07 18:21:20 +0000
>>>>> Test: TEST_PARSE_INSTRUCTION_EXAMPLES
>>>>> Class: PARSE.testGroup
>>>>> File: /Users/po/ooTest/ooRexx/base/keyword/PARSE.testGroup
>>>>> Event: [SYNTAX 48.1] raised unexpectedly.
>>>>> Failure in system service: SYSTEM QUEUE.
>>>>> Line: 272
>>>>> *-* Compiled method "PUSH" with scope "RexxQueue".
>>>>> 272 *-* push "80 4"
>>>>> *-* Compiled method "SEND" with scope "Message".
>>>>> 1631 *-* .message~new(self, methodName)~send
>>>>> 1609 *-* self~doTheTest(fName, aTestResult) -- carry out the testmethod
>>>>> 553 *-* test~execute(testResult, verbose)
>>>>> 553 *-* test~execute(testResult, verbose)
>>>>> 115 *-* suite~execute(testResult)
>>>>> 79 *-* retCode = 'worker.rex'(arguments)
>>>>>
>>>>> [error] [20180227 15:15:13.933998]
>>>>> svn: r11306 Change date: 2017-10-07 18:21:20 +0000
>>>>> Test: TEST_PARSE_VARIABLE_PATTERNS
>>>>> Class: PARSE.testGroup
>>>>> File: /Users/po/ooTest/ooRexx/base/keyword/PARSE.testGroup
>>>>> Event: [SYNTAX 48.1] raised unexpectedly.
>>>>> Failure in system service: SYSTEM QUEUE.
>>>>> Line: 219
>>>>> *-* Compiled method "PUSH" with scope "RexxQueue".
>>>>> 219 *-* PUSH "11/15/98" -- rgf: push assumed date
>>>>> *-* Compiled method "SEND" with scope "Message".
>>>>> 1631 *-* .message~new(self, methodName)~send
>>>>> 1609 *-* self~doTheTest(fName, aTestResult) -- carry out the testmethod
>>>>> 553 *-* test~execute(testResult, verbose)
>>>>> 553 *-* test~execute(testResult, verbose)
>>>>> 115 *-* suite~execute(testResult)
>>>>> 79 *-* retCode = 'worker.rex'(arguments)
>>>>>
>>>>> [error] [20180227 15:15:25.442157]
>>>>> svn: r11306 Change date: 2017-10-07 18:21:20 +0000
>>>>> Test: TEST_EXECIO_DISKW_DEFAULT
>>>>> Class: hostemu.testgroup
>>>>> File: /Users/po/ooTest/ooRexx/extensions/hostemu/hostemu.testGroup
>>>>> Event: [SYNTAX 48.1] raised unexpectedly.
>>>>> Failure in system service: SYSTEM QUEUE.
>>>>> Line: 267
>>>>> *-* Compiled method "QUEUE" with scope "RexxQueue".
>>>>> 267 *-* queue "queued line" i -- need to QUEUE, not PUSH
>>>>> *-* Compiled method "SEND" with scope "Message".
>>>>> 1631 *-* .message~new(self, methodName)~send
>>>>> 1609 *-* self~doTheTest(fName, aTestResult) -- carry out the testmethod
>>>>> 553 *-* test~execute(testResult, verbose)
>>>>> 553 *-* test~execute(testResult, verbose)
>>>>> 115 *-* suite~execute(testResult)
>>>>> 79 *-* retCode = 'worker.rex'(arguments)
>>>>>
>>>>> Interpreter: REXX-ooRexx_5.0.0(MT)_64-bit 6.05 27 Feb 2018
>>>>> OS Name: DARWIN
>>>>> SysVersion: Darwin Darwin Kernel Version 16.7.0: Thu Jan 11
>>>>> 22:59:40 PST 2018; root:xnu-3789.73.8~1/RELEASE_X86_64.16.7.0
>>>>>
>>>>> Tests ran: 22244
>>>>> Assertions: 374387
>>>>> Failures: 27
>>>>> Errors: 25
>>>>>
>>>>> File search: 00:00:08.117423
>>>>> Suite construction: 00:00:00.823531
>>>>> Test execution: 00:03:43.739822
>>>>> Total time: 00:03:53.419832
>>>>>
>>>>> po$
>>>>>
>>>>>
>>>>> Hälsningar/Regards/Grüsse,
>>>>> P.O. Jonsson
>>>>> oor...@jonases.se <mailto:oor...@jonases.seun>
>>>>> Von mein MacBookPro gesendet
>>>>>
>>>>>
>>>>>
>>>>> ------------------------------------------------------------------------------
>>>>> Check out the vibrant tech community on one of the world's most
>>>>> engaging tech sites, Slashdot.org <http://slashdot.org/>!
>>>>> http://sdm.link/slashdot_______________________________________________
>>>>> <http://sdm.link/slashdot_______________________________________________>
>>>>> Oorexx-devel mailing list
>>>>> Oorexx-devel@lists.sourceforge.net
>>>>> <mailto:Oorexx-devel@lists.sourceforge.net>
>>>>> https://lists.sourceforge.net/lists/listinfo/oorexx-devel
>>>>> <https://lists.sourceforge.net/lists/listinfo/oorexx-devel>
>>>>
>>>> ------------------------------------------------------------------------------
>>>> Check out the vibrant tech community on one of the world's most
>>>> engaging tech sites, Slashdot.org <http://slashdot.org/>!
>>>> http://sdm.link/slashdot_______________________________________________
>>>> <http://sdm.link/slashdot_______________________________________________>
>>>> Oorexx-devel mailing list
>>>> Oorexx-devel@lists.sourceforge.net
>>>> <mailto:Oorexx-devel@lists.sourceforge.net>
>>>> https://lists.sourceforge.net/lists/listinfo/oorexx-devel
>>>> <https://lists.sourceforge.net/lists/listinfo/oorexx-devel>
>>>
>>> ------------------------------------------------------------------------------
>>> Check out the vibrant tech community on one of the world's most
>>> engaging tech sites, Slashdot.org <http://slashdot.org/>!
>>> http://sdm.link/slashdot_______________________________________________
>>> <http://sdm.link/slashdot_______________________________________________>
>>> Oorexx-devel mailing list
>>> Oorexx-devel@lists.sourceforge.net
>>> <mailto:Oorexx-devel@lists.sourceforge.net>
>>> https://lists.sourceforge.net/lists/listinfo/oorexx-devel
>>> <https://lists.sourceforge.net/lists/listinfo/oorexx-devel>
>>
>> ------------------------------------------------------------------------------
>> Check out the vibrant tech community on one of the world's most
>> engaging tech sites, Slashdot.org <http://slashdot.org/>!
>> http://sdm.link/slashdot
>> <http://sdm.link/slashdot>_______________________________________________
>> Oorexx-devel mailing list
>> Oorexx-devel@lists.sourceforge.net
>> <mailto:Oorexx-devel@lists.sourceforge.net>
>> https://lists.sourceforge.net/lists/listinfo/oorexx-devel
>> <https://lists.sourceforge.net/lists/listinfo/oorexx-devel>
> ------------------------------------------------------------------------------
> Check out the vibrant tech community on one of the world's most
> engaging tech sites, Slashdot.org!
> http://sdm.link/slashdot_______________________________________________
> Oorexx-devel mailing list
> Oorexx-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/oorexx-devel
------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
_______________________________________________
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel