Starting Item #8 on the Release Checklist
8. Verify 'make check' is passing
- Start discussion on octave-maintainers list about which
failing tests must be fixed
- Identify and fix any tests determined critical in step above
The buildbots seem to be having a problem with uicontextmenu
recently. A number of operating system / compiler combinations
are failing this test:
>>>>> processing
/scratch/buildbot/slaves/jwe-debian-x86_64-1/gcc-7-debian/build/libinterp/corefcn/graphics.cc-tst
***** test
hf = figure ("visible", "off");
hax = axes ("parent", hf);
unwind_protect
hctx1 = uicontextmenu ("parent", hf);
hctx2 = uicontextmenu ("parent", hf);
set (hf, "uicontextmenu", hctx2);
set (hax, "uicontextmenu", hctx2);
assert (get (hf, "uicontextmenu"), hctx2);
assert (get (hax, "uicontextmenu"), hctx2);
assert (get (hf, "children"), [hctx2; hctx1; hax]);
delete (hctx2);
assert (get (hf, "uicontextmenu"), []);
assert (get (hax, "uicontextmenu"), []);
assert (get (hf, "children"), [hctx1; hax]);
set (hf, "uicontextmenu", hctx1);
assert (get (hf, "uicontextmenu"), hctx1);
set (hf, "uicontextmenu", []);
assert (get (hf, "uicontextmenu"), []);
assert (get (hf, "children"), [hctx1; hax]);
unwind_protect_cleanup
close (hf);
end_unwind_protect;
!!!!! test failed
ASSERT errors for: assert (get (hf, "uicontextmenu"),[])
Location | Observed | Expected | Reason
. O(1x1) E(0x0) Dimensions don't
match
--Rik