From deb9ece36d01db81cc87a522555b32ed2c7fd6fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Villemot?= Date: Wed, 30 Jan 2013 16:44:10 +0100 Subject: [PATCH] Fix MOD-file name in Kalman tests --- mex/sources/estimation/tests/testInitKalman.cc | 7 ++----- mex/sources/estimation/tests/testKalman.cc | 7 ++----- 2 files changed, 4 insertions(+), 10 deletions(-) diff --git a/mex/sources/estimation/tests/testInitKalman.cc b/mex/sources/estimation/tests/testInitKalman.cc index 7c1451f5c..37884a6cc 100644 --- a/mex/sources/estimation/tests/testInitKalman.cc +++ b/mex/sources/estimation/tests/testInitKalman.cc @@ -1,5 +1,5 @@ /* - * Copyright (C) 2010-2011 Dynare Team + * Copyright (C) 2010-2013 Dynare Team * * This file is part of Dynare. * @@ -17,9 +17,6 @@ * along with Dynare. If not, see . */ -// Test for InitializeKalmanFilter -// Uses fs2000k2e.mod and its ..._dynamic.mexw32 - #include "InitializeKalmanFilter.hh" int @@ -27,7 +24,7 @@ main(int argc, char **argv) { if (argc < 2) { - std::cerr << argv[0] << ": please provide as argument the name of the dynamic DLL generated from fs2000k2.mod (typically fs2000k2_dynamic.mex*)" << std::endl; + std::cerr << argv[0] << ": please provide as argument the name of the dynamic DLL generated from fs2000k2e.mod (typically fs2000k2e_dynamic.mex*)" << std::endl; exit(EXIT_FAILURE); } diff --git a/mex/sources/estimation/tests/testKalman.cc b/mex/sources/estimation/tests/testKalman.cc index 1b3e8156a..cd1401c69 100644 --- a/mex/sources/estimation/tests/testKalman.cc +++ b/mex/sources/estimation/tests/testKalman.cc @@ -1,5 +1,5 @@ /* - * Copyright (C) 2010-2011 Dynare Team + * Copyright (C) 2010-2013 Dynare Team * * This file is part of Dynare. * @@ -17,9 +17,6 @@ * along with Dynare. If not, see . */ -// Test for InitializeKalmanFilter -// Uses fs2000k2e.mod and its ..._dynamic.mexw32 - #include "KalmanFilter.hh" int @@ -27,7 +24,7 @@ main(int argc, char **argv) { if (argc < 2) { - std::cerr << argv[0] << ": please provide as argument the name of the dynamic DLL generated from fs2000k2.mod (typically fs2000k2_dynamic.mex*)" << std::endl; + std::cerr << argv[0] << ": please provide as argument the name of the dynamic DLL generated from fs2000k2e.mod (typically fs2000k2e_dynamic.mex*)" << std::endl; exit(EXIT_FAILURE); }