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))]);