view test/return.tst @ 20628:9e9e67845bbe

build: Set TEXMFVAR to ensure TeX cache files can be written to build dir * doc/module.mk (TEXMFVAR): New variable, export to environment. (TEXINPUTS): Include $(abs_top_builddir)/doc/.texmf-var// in the list. (doc-clean): Delete doc/.texmf-var.
author Mike Miller <mtmiller@octave.org>
date Sun, 02 Aug 2015 11:05:13 -0400
parents 4197fc428c7d
children
line wrap: on
line source

## Copyright (C) 2006-2015 John W. Eaton
##
## 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
## <http://www.gnu.org/licenses/>.

%!function y = f ()
%!  y = 1;
%!  return;
%!  y = 2;
%!endfunction
%!
%!assert (f (), 1)

%!test
%! return;