~gabriel1984sibiu/octave/octave

« back to all changes in this revision

Viewing changes to test/fntests.m

  • Committer: Grevutiu Gabriel
  • Date: 2014-01-02 13:05:54 UTC
  • Revision ID: gabriel1984sibiu@gmail.com-20140102130554-3r7ivdjln1ni6kcg
New version (3.8.0) from upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
## Copyright (C) 2005-2013 David Bateman
 
2
##
 
3
## This file is part of Octave.
 
4
##
 
5
## Octave is free software; you can redistribute it and/or modify it
 
6
## under the terms of the GNU General Public License as published by
 
7
## the Free Software Foundation; either version 3 of the License, or (at
 
8
## your option) any later version.
 
9
##
 
10
## Octave is distributed in the hope that it will be useful, but
 
11
## WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
13
## General Public License for more details.
 
14
##
 
15
## You should have received a copy of the GNU General Public License
 
16
## along with Octave; see the file COPYING.  If not, see
 
17
## <http://www.gnu.org/licenses/>.
 
18
 
 
19
clear all;
 
20
 
 
21
global files_with_no_tests = {};
 
22
global files_with_tests = {};
 
23
global topsrcdir;
 
24
global topbuilddir;
 
25
 
 
26
currdir = canonicalize_file_name (".");
 
27
 
 
28
debug_on_error (true);
 
29
 
 
30
if (nargin == 1)
 
31
  xdir = argv (){1};
 
32
else
 
33
  xdir = ".";
 
34
endif
 
35
 
 
36
srcdir = canonicalize_file_name (xdir);
 
37
topsrcdir = canonicalize_file_name (fullfile (xdir, ".."));
 
38
topbuilddir = canonicalize_file_name (fullfile (currdir, ".."));
 
39
 
 
40
if (strcmp (currdir, srcdir))
 
41
  testdirs = {srcdir};
 
42
else
 
43
  testdirs = {currdir, srcdir};
 
44
endif
 
45
 
 
46
liboctave_tree = canonicalize_file_name (fullfile (topbuilddir, "liboctave"));
 
47
src_tree = canonicalize_file_name (fullfile (topbuilddir, "libinterp"));
 
48
script_tree = canonicalize_file_name (fullfile (topsrcdir, "scripts"));
 
49
local_script_tree = canonicalize_file_name (fullfile (currdir, "../scripts"));
 
50
 
 
51
fundirs = {liboctave_tree, src_tree, script_tree};
 
52
 
 
53
if (! strcmp (currdir, srcdir))
 
54
  fundirs{end+1} = local_script_tree;
 
55
endif
 
56
 
 
57
__run_test_suite__ (fundirs, testdirs);