view test/bug-53579.tst @ 28241:ef7bc64a604b

dec2bin.m: Fix algorithm for numbers less than intmin ('int32') (bug #58147). * dec2bin.m: Document that negative numbers are restricted to < -flintmax/2. Validate input and error if negative numbers greater than -flintmax/2 are present. Update BIST tests.
author Rik <rik@octave.org>
date Sat, 25 Apr 2020 11:45:03 -0700
parents 34617dd78f02
children 332a6ccac881
line wrap: on
line source

%!function [raa, rbb, igaa, igbb] = sub1 (aa, bb)
%!  global aa bb
%!  aa = 1;
%!  raa = aa;
%!  rbb = bb;
%!  igaa = isglobal ("aa");
%!  igbb = isglobal ("bb");
%!endfunction

%!test <*53579>
%! global aa bb
%! assert (isglobal ("aa"));
%! assert (isglobal ("bb"));
%! aa = 3;
%! xx = 5;
%! [raa, rbb, igaa, igbb] = sub1 (aa, xx);
%! assert (raa, 1);
%! assert (rbb, []);
%! assert (igaa);
%! assert (igbb);
%! assert (xx, 5);
%! clear -global aa bb;  # cleanup after test