From 7df64841b13f3dacfbe87b94caa096fc5caa834f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Villemot?= <sebastien@dynare.org> Date: Mon, 16 Dec 2013 10:25:39 +0100 Subject: [PATCH] Fix bug introduced in 8b1e76a1bfcca7908ad78efebde6dfb1480da4cd. The unitary tests file was renamed, but his output file wasn't. (cherry picked from commit bb1353e46b090d21359a31b91fffacdf1bdf0607) --- tests/run_all_unitary_tests.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/run_all_unitary_tests.m b/tests/run_all_unitary_tests.m index e0101da5d3..8707a8c810 100644 --- a/tests/run_all_unitary_tests.m +++ b/tests/run_all_unitary_tests.m @@ -29,9 +29,9 @@ end cd(getenv('TOP_TEST_DIR')); if isoctave - fid = fopen('run_unitary_tests.o.trs', 'w+'); + fid = fopen('run_all_unitary_tests.o.trs', 'w+'); else - fid = fopen('run_unitary_tests.m.trs', 'w+'); + fid = fopen('run_all_unitary_tests.m.trs', 'w+'); end if length(failedtests) > 0 fprintf(fid,':test-result: FAIL\n'); -- GitLab