r3wp [groups: 83 posts: 189283]
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

World: r3wp

[!REBOL3]

BrianH
19-Oct-2010
[5468]
Nice.
Andreas
19-Oct-2010
[5469]
The first few new regressions indicate that the "make error!" semantics 
have changed.
BrianH
19-Oct-2010
[5470]
DISARM has finally been removed. It has never been necessary in R3.
Andreas
19-Oct-2010
[5471]
Yes. Would maybe make sense to keep it around for a while to warn 
that it is now gone.
BrianH
19-Oct-2010
[5472]
We did that for more than a year. Now it is gone.
Andreas
19-Oct-2010
[5473x2]
It only had a deprecation notice, no hard error (like e.g. LOAD/next 
has now).
I personally don't care either way.
BrianH
19-Oct-2010
[5475]
The deprecation notice was in CureCode, when someone complained that 
it didn't work. From early 2009.
Andreas
19-Oct-2010
[5476]
Yeah, and in the docstring.
BrianH
19-Oct-2010
[5477x2]
Just looked back and we made that change in 2008. Wow.
It predated CureCode :)
Andreas
19-Oct-2010
[5479x2]
The `make image!` errors in lines 42-43 seem to be real regressions.
Seems complement no longer works on images and silently fails.
BrianH
19-Oct-2010
[5481]
The test on line 51 is a bug. See bug#1471, fixed in a108.
Andreas
19-Oct-2010
[5482]
Yep.
BrianH
19-Oct-2010
[5483x2]
58 is the result of # now being none.
And 75, 101, 102.
Andreas
19-Oct-2010
[5485]
Same for 75.
BrianH
19-Oct-2010
[5486]
112-122 are the result of fixing bug#1602.
Andreas
19-Oct-2010
[5487x6]
128-131 is # again.
AS are 135-137 and 138-141.
And 150-152, 153-156.
Ok, and that's it.
170+ is a erronous paste of mine :)
Well, so that looks like one real regression (complement on image!).
BrianH
19-Oct-2010
[5493x2]
I think that the error codes are checked now. Fix all your tests 
that try to make errors with codes not in system/catalog/errors.
176-180 are examples of this.
Andreas
19-Oct-2010
[5495x4]
Refresh the page.
Or ignore everything past 170.
176-180 == 7-11 :)
Ok, 108 introduces 4 new errors (bad-header, bad-checksum, no-script, 
invalid-port-arg), renames 1 (bad-intrinsic to bad-sys-func) and 
changes the number of arguments for 1 (security-error)
BrianH
19-Oct-2010
[5499]
Then some of the others must have been changed or renamed earlier.
Andreas
19-Oct-2010
[5500x2]
The error IDs in the tests 7-10 do not exist in either A107 or A108.
And the error in 11 was renamed, as stated above.
BrianH
19-Oct-2010
[5502]
Yup. I think that error code checking came in an earlier release.
Andreas
19-Oct-2010
[5503x6]
So those are also things where the testsuite needs to be updated.
Well, maybe those are real regressions nevertheless.
At least the behaviour of error? has changed in this regard.
A107:
>> error? make error! [type: 'foo id: 'bar]
== true
A108:
>> error? make error! [type: 'foo id: 'bar]
** Script error: invalid argument: [type: 'foo id: 'bar]
** Where: make
** Near: make error! [type: 'foo id: 'bar]
I think we had a CC issue for that.
BrianH
19-Oct-2010
[5509x5]
Nope, but the behavior of make error! has changed to actually trigger 
a *different* error if the error codes it is passed aren't in the 
catalog. ERROR? is the same.
ERROR? isn't called in those tests because MAKE error! triggers a 
different error first.
We had a CC issue for that, and the result was adding the error code 
checking to make error!.
The fix was is alpha 98.
was in
Andreas
19-Oct-2010
[5514]
Something changed between A107 and A108.
BrianH
19-Oct-2010
[5515]
A lot changed. What do you mean?
Andreas
19-Oct-2010
[5516x2]
In this specific case.
Ah, I see.