view test/bug-55308.tst @ 29360:55008004bb9a stable rc-6-1-90

bump versions for 6.1.90 release candidate * configure.ac (AC_INIT): Set version to 6.1.90. (OCTAVE_PATCH_VERSION): Set to 90. (OCTAVE_COPYRIGHT): Update to 2021. (OCTAVE_RELEASE_DATE): Update to 2021-02-10. * liboctave/module.mk, libgui/module.mk, libinterp/module.mk: Bump version number for library revision.
author John W. Eaton <jwe@octave.org>
date Wed, 10 Feb 2021 11:31:03 -0500
parents 0a5b15007766
children 2838bbd84b87
line wrap: on
line source

########################################################################
##
## Copyright (C) 2018-2021 The Octave Project Developers
##
## See the file COPYRIGHT.md in the top-level directory of this
## distribution or <https://octave.org/copyright/>.
##
## This file is part of Octave.
##
## Octave is free software: you can redistribute it and/or modify it
## under the terms of the GNU General Public License as published by
## the Free Software Foundation, either version 3 of the License, or
## (at your option) any later version.
##
## Octave is distributed in the hope that it will be useful, but
## WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
## GNU General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with Octave; see the file COPYING.  If not, see
## <https://www.gnu.org/licenses/>.
##
########################################################################

%!test
%! hf = figure ("visible", "off");
%! unwind_protect
%!   hg = hggroup ();
%!   axis ([-2, 2, -2, 2]);
%!   hl = line ([0;1], [0;0], "color", "r");
%!   set (hl, "parent", hg);
%! unwind_protect_cleanup
%!   close (hf);
%! end_unwind_protect