Index: /issm/trunk/test/NightlyRun/test1208.m
===================================================================
--- /issm/trunk/test/NightlyRun/test1208.m	(revision 5613)
+++ /issm/trunk/test/NightlyRun/test1208.m	(revision 5614)
@@ -19,7 +19,22 @@
 %Adapt the time steps to the resolution
 md.dt=20;
-md.verbose=10;
 md.output_frequency=20;
 
 %Now we can solve the problem 
 md=solve(md,'analysis_type',Transient3DSolutionEnum);
+
+%Fields and tolerances to track changes
+field_names     ={'Vx','Vy','Vz','Vel','Pressure','Thickness','Bed','Surface','Temperature','MeltingRate'};
+field_tolerances={1e-08,1e-08,1e-08,1e-08,1e-08,1e-08,1e-08,1e-08,1e-08,1e-08};
+field_values={...
+	PatchToVec(md.results.Transient3DSolution(end).Vx),...
+	PatchToVec(md.results.Transient3DSolution(end).Vy),...
+	PatchToVec(md.results.Transient3DSolution(end).Vz),...
+	PatchToVec(md.results.Transient3DSolution(end).Vel),...
+	PatchToVec(md.results.Transient3DSolution(end).Pressure),...
+	PatchToVec(md.results.Transient3DSolution(end).Thickness),...
+	PatchToVec(md.results.Transient3DSolution(end).Bed),...
+	PatchToVec(md.results.Transient3DSolution(end).Surface),...
+	PatchToVec(md.results.Transient3DSolution(end).Temperature),...
+	PatchToVec(md.results.Transient3DSolution(end).MeltingRate),...
+	};
