view test/bug-61191/bug-61191.tst @ 30199:37ddca7ad9cb stable

avoid internal error and segfault with eval and scripts (bug #61191) * stack-frame.cc (script_stack_frame::get_val_offsets_with_insert): If frame_offset is initially zero then update frame_offset from m_lexical_frame_offsets after calling set_script_offsets_internal. * test/bug-61191/bug-61191.tst, test/bug-61191/subdir/bug_61191.m: New files. * test/bug-61191/module.mk: Update. * test/module.mk: Update.
author John W. Eaton <jwe@octave.org>
date Tue, 21 Sep 2021 13:14:31 -0400
parents
children 49c8538c64c4
line wrap: on
line source

########################################################################
##
## Copyright (C) 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 <61191>
%! unwind_protect
%!   addpath ("subdir");
%!   omc_1 = rand (3, 1);
%!   Tc_1 = rand (3, 1);
%!   bug_61191
%!   assert (omckk, omc_1);
%!   assert (Tckk, Tc_1);
%! unwind_protect_cleanup
%!   rmpath ("subdir");
%! end_unwind_protect