From 030ad04787b9042bf1c1207205534bba87034a32 Mon Sep 17 00:00:00 2001 From: Keith Roberts Date: Sat, 7 Mar 2020 18:38:41 -0300 Subject: [PATCH] small fix --- Tests/RunTests.m | 4 +++- Tests/TestECGC.m | 4 ++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/Tests/RunTests.m b/Tests/RunTests.m index fd3d5d47..670e4d79 100644 --- a/Tests/RunTests.m +++ b/Tests/RunTests.m @@ -6,4 +6,6 @@ TestJBAY -exit \ No newline at end of file +TestECGC + +exit diff --git a/Tests/TestECGC.m b/Tests/TestECGC.m index 403858f5..f3fca405 100644 --- a/Tests/TestECGC.m +++ b/Tests/TestECGC.m @@ -43,7 +43,7 @@ if(sum(Crnew < 6) < 50) error(['Unable to bound maximum Courant number. Got ',... num2str(max(Crnew)),' expecting < 6.0']); - %exit(1) + exit(1) else disp(['Unable to bound maximum Courant number. Got ',... num2str(max(Crnew)),' expecting < 6.0']); @@ -51,7 +51,7 @@ if(sum(Crnew > 0.5) < 50) error(['Bounded minimum Courant number. Got ',... num2str(min(Crnew))]); - %exit(1) + exit(1) else disp(['Bounded maximum Courant number. Got ',... num2str(max(Crnew))]);