view test/bug-45969.tst @ 26620:82865ccb62c2 stable rc-5-0-90

bump version for first 5.1 release candidate * configure.ac (AC_INIT): Set version to 5.0.90. (OCTAVE_PATCH_VERSION): Now 90. (OCTAVE_RELEASE_DATE): Set to 2019-01-24.
author John W. Eaton <jwe@octave.org>
date Thu, 24 Jan 2019 19:22:18 +0000
parents a08602475855
children b765393dabe6
line wrap: on
line source

%!test
%! ascii_filename = tempname ();
%! binary_filename = tempname ();
%! a = 2;
%! b = 10;
%! c = 20;
%! f1 = @ (f, x) f (x) + a;
%! f2 = @ (y) f1 (@ (z) z^2 + b * y, y) + c;
%! f2_arg = 5;
%! unwind_protect
%!   save (ascii_filename, "f2");
%!   save ("-binary", binary_filename, "f2");
%!   ascii = load (ascii_filename);
%!   binary = load (binary_filename);
%!   assert (f2 (f2_arg), ascii.f2 (f2_arg));
%!   assert (f2 (f2_arg), binary.f2 (f2_arg));
%! unwind_protect_cleanup
%!   unlink (ascii_filename);
%!   unlink (binary_filename);
%! end_unwind_protect

%!testif HAVE_HDF5
%! hdf5_filename = tempname ();
%! a = 2;
%! b = 10;
%! c = 20;
%! f1 = @ (f, x) f (x) + a;
%! f2 = @ (y) f1 (@ (z) z^2 + b * y, y) + c;
%! f2_arg = 5;
%! unwind_protect
%!   save ("-hdf5", hdf5_filename, "f2");
%!   hdf5 = load (hdf5_filename);
%!   assert (f2 (f2_arg), hdf5.f2 (f2_arg));
%! unwind_protect_cleanup
%!   unlink (hdf5_filename);
%! end_unwind_protect