Skip to content
Snippets Groups Projects
Verified Commit b75d175b authored by Stéphane Adjemian's avatar Stéphane Adjemian
Browse files

Fixed local testsuite.

Fixed dependency on m-unit-tests toolbox.
parent 0dd9f4f1
No related branches found
No related tags found
No related merge requests found
*~
.DS_Store
externals/*
m-unit-tests/*
src/git.info
src/git.last-commit-hash
\ No newline at end of file
src/git.last-commit-hash
......@@ -3,12 +3,17 @@ MATLAB=`which matlab`
all: check-octave check-matlab
check-octave:
m-unit-tests/src/mtest.m:
git clone https://git.dynare.org/Dynare/m-unit-tests
check-octave: m-unit-tests/src/mtest.m
@cd tests ;\
$(OCTAVE) --no-init-file --silent --no-history --eval "addpath([pwd() '/../m-unit-tests/src']); runalltests" && [ ! -f ./failed ] && [ -f ./pass ]
check-matlab:
check-matlab: m-unit-tests/src/mtest.m
@$(MATLAB) -nosplash -nodisplay -r "addpath m-unit-tests/src; cd tests; runalltests; quit" && [ ! -f ./tests/failed ] && [ -f ./tests/pass ]
check-clean:
rm -f tests/*_test_*.m tests/*.csv tests/*.xls tests/*.xlsx tests/*.mat tests/failed tests/datafile_for_test
rm -f git.info git.last-commit-hash tests/pass tests/failed tests/*.spc
rm -rf m-unit-tests
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment