view test/fcn-handle/static-method.tst @ 31615:40b151abbb9b

don't attempt to restore settings from old qt-settings config file We changed the default settings file name in 2019. It's time to let the old name go. * resource-manager.cc (resource_manager::resource_manager): Don't attempt to copy settings from old qt-settings file used by Octave prior to March 2019.
author John W. Eaton <jwe@octave.org>
date Fri, 02 Dec 2022 10:07:32 -0500
parents 796f54d4ddbf
children 597f3ee61a48
line wrap: on
line source

########################################################################
##
## Copyright (C) 2019-2022 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 <*51709>
%! fh = @pkga.pkgb.bug51709_a.smeth;
%! assert (fh (), "pkg bug51709_a");

%!test <*55975>
%! fh = @pkga.pkgb.bug51709_b.smeth;
%! assert (fh (), "pkg bug51709_b");

## Also test without function handle.
%!assert <*55975> (pkga.pkgb.bug51709_a.smeth (), "pkg bug51709_a");
%!assert (pkga.pkgb.bug51709_b.smeth (), "pkg bug51709_b")