Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Johannes Pfeifer
dynare
Commits
dec622c4
Commit
dec622c4
authored
Dec 21, 2011
by
Stéphane Adjemian
Browse files
Fixed bug and streamlined the routines for unitary tests.
parent
5ec78139
Changes
2
Hide whitespace changes
Inline
Side-by-side
matlab/internals.m
View file @
dec622c4
...
...
@@ -79,10 +79,10 @@ more off
if
strcmpi
(
flag
,
'
-
-
test
'
)
if
nargin
>
1
dynare_config
([],
0
);
dynare_path
=
dynare_config
([],
0
);
number_of_matlab_routines
=
length
(
varargin
);
for
i
=
1
:
number_of_matlab_routines
dynTest
(
varargin
{
i
});
dynTest
(
varargin
{
i
}
,
dynare_path
);
end
else
disp
(
'
You
have
to
specify
at
least
one
matlab
routine
after
-
-
test
flag
!
'
)
...
...
matlab/utilities/tests/dynTest.m
View file @
dec622c4
function
dynTest
(
fun
)
function
dynTest
(
fun
,
dynare_path
)
%
@info
:
%!
@deftypefn
{
Function
File
}
dynTest
(
@var
{
fun
})
...
...
@@ -50,25 +50,32 @@ function dynTest(fun)
%
You
should
have
received
a
copy
of
the
GNU
General
Public
License
%
along
with
Dynare
.
If
not
,
see
<
http
:
//www.gnu.org/licenses/>.
if
isempty
(
strfind
(
fun
,
'@'
))
&
(
~
isempty
(
strfind
(
fun
,
'/'
))
||
~
isempty
(
strfind
(
fun
,
'\'
))
)
[
pathstr1
,
name
,
ext
]
=
fileparts
(
fun
);
addpath
(
pathstr1
);
rm_path
=
1
;
else
rm_path
=
0
;
original_directory
=
pwd
();
cd
([
dynare_path
filesep
'
..
'
filesep
'
tests
'
]);
[
pathstr1
,
name1
,
ext1
]
=
fileparts
(
fun
);
mex_flag
=
0
;
if
exist
(
name1
)
==
3
mex_flag
=
1
;
end
class_flag
=
0
;
if
~
isempty
(
strfind
(
fun
,
'@'
))
||
~
isempty
(
strfind
(
which
(
name1
),
'@'
))
class_flag
=
1
;
end
[
pathstr2
,
name
,
ext
]
=
fileparts
(
which
(
fun
)
);
check
=
mtest
(
name1
,
pathstr1
);
if
~
(
isempty
(
pathstr2
)
||
isempty
(
name
)
||
isempty
(
ext
)
)
&&
strcmp
(
ext
(
2
:
end
),
'm'
)
check
=
mtest
(
name
,
pathstr2
);
if
check
disp
([
'
Succesfull
test
(
s
)
for
'
fun
'
routine
!
'
])
if
check
if
mex_flag
disp
([
'
Succesfull
test
(
s
)
for
'
name1
'
mex
file
!
'
])
elseif
class_flag
disp
([
'
Succesfull
test
(
s
)
for
'
name1
'
method
!
'
])
else
disp
([
'
Succesfull
test
(
s
)
for
'
name1
'
routine
!
'
])
end
else
disp
([
fun
'
is
not
a
known
matlab
/
octave
routine
!
'
])
end
if
rm_path
rmpath
(
pathstr1
)
end
\ No newline at end of file
cd
(
original_directory
);
\ No newline at end of file
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment