[Oorexx-devel] Failing Test

2023-07-22 Thread ooRexx
I changed a typo “srip” to “strip" in the TRACE.testGroup with r12708 - if t~lastItem~srip("l")~startsWith(">I> Method") then + if t~lastItem~strip("l")~startsWith(">I> Method") then Now many if not all platforms have a failure instead of just skipping the test :-( can someone please change th

[Oorexx-devel] Source Package

2023-07-22 Thread ooRexx
I am trying to make the build of a source package work, i.e. a compressed version of the complete source code as it comes out of SVN. With these lines in CMakeLists.txt: # Create a source package set(CPACK_SOURCE_GENERATOR "TGZ") set(CPACK_SOURCE_PACKAGE_FILE_NAME "${CPACK_PACKAGE_NAME}-${ORX_M

Re: [Oorexx-devel] Source Package

2023-07-22 Thread Rony
Hi P.O.,being on the road not having access to a computer and not being a CMake expert at all there is one thing I vaguely remember: you can supply the install directory when issuing make install, maybe something like „make install ~/Applications“.HTH—-ronyRony G. Flatscher (mobil/e)Am 22.07.2023 u

Re: [Oorexx-devel] Source Package

2023-07-22 Thread Rony
Hi P.O.,forgot DESTDIR, cf https://stackoverflow.com/questions/11307465/destdir-and-prefix-of-makeHence something like   make install DESTDIR=~/Applications/ooRexxHTH—-ronyRony G. Flatscher (mobil/e)Am 22.07.2023 um 11:39 schrieb Rony :Hi P.O.,being on the road not having access to a computer and

Re: [Oorexx-devel] Failing Test

2023-07-22 Thread Jeremy Nicoll
On Sat, 22 Jul 2023, at 09:53, ooRexx wrote: > I changed a typo “srip” to “strip" in the TRACE.testGroup with r12708 > > - if t~lastItem~srip("l")~startsWith(">I> Method") then > + if t~lastItem~strip("l")~startsWith(">I> Method") then > > Now many if not all platforms have a failure instead of j

Re: [Oorexx-devel] Failing Test

2023-07-22 Thread ooRexx
Hi Jeremy, In the normal case the testing framework DO catch syntax errors and reports them, but It can be tweaked for special tests. I only spotted this typo because I saw it once, in a log file. This is how the test looks like (with the typo); as you can see it is much more complex than “norm

Re: [Oorexx-devel] Source Package

2023-07-22 Thread ooRexx
Dear Rony, This did not work (the path inside /Applications/ooRexx is still messed up for the installation because of my “fix") so I need to remove that line for the source package and think of something else. I think moving to a temp dir inside the build path would be more logical. Hälsningar

Re: [Oorexx-devel] Source Package

2023-07-22 Thread Rony
Dear P.O.,what is the resulting structure and what did you expect?Have you looked into the prefix switch in the explanation of the StackOverflow link?HTH—-ronyRony G. Flatscher (mobil/e)Am 22.07.2023 um 15:20 schrieb ooRexx :Dear Rony,This did not work (the path inside /Applications/ooRexx is stil

Re: [Oorexx-devel] Failing Test

2023-07-22 Thread Jeremy Nicoll
On Sat, 22 Jul 2023, at 14:14, ooRexx wrote: > Hi Jeremy, > > In the normal case the testing framework DO catch syntax errors and > reports them, but It can be tweaked for special tests That's fascinating. I didn't stop to think about how one would design a framework intended to spot errors

Re: [Oorexx-devel] Failing Test

2023-07-22 Thread Rick McGuire
The problem with the original line is that because of the reply statement, the error did not get propagated back to the calling framework, it just terminated the thread. Because that did not get trapped and there were no assertion failures, it was marked as successful. Correcting the typo eliminate

Re: [Oorexx-devel] Source Package

2023-07-22 Thread ooRexx
> On 22. Jul 2023, at 15:35, Rony wrote: > > Dear P.O., > > what is the resulting structure and what did you expect? > The resulting structure was a mismatch. Rather than oorexx5 as a resulting folder I end up with oorexx5/Users/jenkins/Applications/ooRexx5. The mismatch goes away when I r