Index: /issm/trunk/test/NightlyRun/runme.m
===================================================================
--- /issm/trunk/test/NightlyRun/runme.m	(revision 6730)
+++ /issm/trunk/test/NightlyRun/runme.m	(revision 6731)
@@ -89,4 +89,5 @@
 %GET exculde {{{1
 exclude_ids=getfieldvalue(options,'exclude',[]);
+exclude_ids=[exclude_ids 443 444 241 242];
 pos=find(ismember(test_ids,exclude_ids));
 test_ids(pos)=[];
Index: /issm/trunk/test/NightlyRun/test241.m
===================================================================
--- /issm/trunk/test/NightlyRun/test241.m	(revision 6731)
+++ /issm/trunk/test/NightlyRun/test241.m	(revision 6731)
@@ -0,0 +1,17 @@
+md=mesh(model,'../Exp/Square.exp',120000);
+md=geography(md,'all','');
+md=parameterize(md,'../Par/SquareShelf.par');
+md=extrude(md,2,1);
+md=setelementstype(md,'stokes','../Exp/SquareHalfRight.exp','fill','macayeal');
+md=solve(md,'analysis_type',DiagnosticSolutionEnum);
+
+%Fields and tolerances to track changes
+field_names     ={'Vx','Vy','Vz','Vel','Pressure'};
+field_tolerances={1e-09,1e-09,1e-09,1e-09,1e-09};
+field_values={...
+	PatchToVec(md.results.DiagnosticSolution.Vx),...
+	PatchToVec(md.results.DiagnosticSolution.Vy),...
+	PatchToVec(md.results.DiagnosticSolution.Vz),...
+	PatchToVec(md.results.DiagnosticSolution.Vel),...
+	PatchToVec(md.results.DiagnosticSolution.Pressure),...
+	};
Index: /issm/trunk/test/NightlyRun/test242.m
===================================================================
--- /issm/trunk/test/NightlyRun/test242.m	(revision 6731)
+++ /issm/trunk/test/NightlyRun/test242.m	(revision 6731)
@@ -0,0 +1,18 @@
+md=mesh(model,'../Exp/Square.exp',120000);
+md=geography(md,'all','');
+md=parameterize(md,'../Par/SquareShelf.par');
+md=extrude(md,2,1);
+md=setelementstype(md,'stokes','../Exp/SquareHalfRight.exp','fill','macayeal');
+md=SetParallel(md,3);
+md=solve(md,'analysis_type',DiagnosticSolutionEnum);
+
+%Fields and tolerances to track changes
+field_names     ={'Vx','Vy','Vz','Vel','Pressure'};
+field_tolerances={1e-09,1e-09,1e-06,1e-09,1e-09};
+field_values={...
+	PatchToVec(md.results.DiagnosticSolution.Vx),...
+	PatchToVec(md.results.DiagnosticSolution.Vy),...
+	PatchToVec(md.results.DiagnosticSolution.Vz),...
+	PatchToVec(md.results.DiagnosticSolution.Vel),...
+	PatchToVec(md.results.DiagnosticSolution.Pressure),...
+	};
Index: /issm/trunk/test/NightlyRun/test443.m
===================================================================
--- /issm/trunk/test/NightlyRun/test443.m	(revision 6731)
+++ /issm/trunk/test/NightlyRun/test443.m	(revision 6731)
@@ -0,0 +1,18 @@
+md=mesh(model,'../Exp/Square.exp',180000);
+md=geography(md,'../Exp/SquareShelf.exp','');
+md=parameterize(md,'../Par/SquareSheetShelf.par');
+md=extrude(md,5,1);
+md=setelementstype(md,'stokes','../Exp/SquareHalfRight.exp','fill','macayeal','coupling','tiling');
+md.cluster=none;
+md=solve(md,'analysis_type',DiagnosticSolutionEnum);
+
+%Fields and tolerances to track changes
+field_names     ={'Vx','Vy','Vz','Vel','Pressure'};
+field_tolerances={1e-09,1e-09,1e-09,1e-09,1e-09};
+field_values={...
+	PatchToVec(md.results.DiagnosticSolution.Vx),...
+	PatchToVec(md.results.DiagnosticSolution.Vy),...
+	PatchToVec(md.results.DiagnosticSolution.Vz),...
+	PatchToVec(md.results.DiagnosticSolution.Vel),...
+	PatchToVec(md.results.DiagnosticSolution.Pressure),...
+	};
Index: /issm/trunk/test/NightlyRun/test444.m
===================================================================
--- /issm/trunk/test/NightlyRun/test444.m	(revision 6731)
+++ /issm/trunk/test/NightlyRun/test444.m	(revision 6731)
@@ -0,0 +1,18 @@
+md=mesh(model,'../Exp/Square.exp',180000);
+md=geography(md,'../Exp/SquareShelf.exp','');
+md=parameterize(md,'../Par/SquareSheetShelf.par');
+md=extrude(md,5,1);
+md=setelementstype(md,'stokes','../Exp/SquareHalfRight.exp','fill','macayeal');
+md=SetParallel(md,7);
+md=solve(md,'analysis_type',DiagnosticSolutionEnum);
+
+%Fields and tolerances to track changes
+field_names     ={'Vx','Vy','Vz','Vel','Pressure'};
+field_tolerances={1e-09,1e-09,1e-08,1e-09,1e-09};
+field_values={...
+	PatchToVec(md.results.DiagnosticSolution.Vx),...
+	PatchToVec(md.results.DiagnosticSolution.Vy),...
+	PatchToVec(md.results.DiagnosticSolution.Vz),...
+	PatchToVec(md.results.DiagnosticSolution.Vel),...
+	PatchToVec(md.results.DiagnosticSolution.Pressure),...
+	};
