Index: /issm/trunk-jpl/test/NightlyRun/IdToName.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/IdToName.m	(revision 15523)
+++ /issm/trunk-jpl/test/NightlyRun/IdToName.m	(revision 15524)
@@ -134,4 +134,5 @@
 	case 432, name='SquareSheetShelfSteaEnthalpyP3d';
 	case 433, name='RoundSheetShelfGLMigrationM3d';
+	case 434, name='SquareSheetShelfL1L2';
 	case 501, name='PigDiagM2d';
 	case 502, name='PigDiagP3d';
Index: /issm/trunk-jpl/test/NightlyRun/IdToName.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/IdToName.py	(revision 15523)
+++ /issm/trunk-jpl/test/NightlyRun/IdToName.py	(revision 15524)
@@ -134,4 +134,5 @@
 		432 : 'SquareSheetShelfSteaEnthalpyP3d',
 		433 : 'RoundSheetShelfGLMigrationM3d',
+		434 : 'SquareSheetShelfDiagL1L2',
 		501 : 'PigDiagM2d',
 		502 : 'PigDiagP3d',
Index: /issm/trunk-jpl/test/NightlyRun/test434.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test434.m	(revision 15524)
+++ /issm/trunk-jpl/test/NightlyRun/test434.m	(revision 15524)
@@ -0,0 +1,18 @@
+md=triangle(model(),'../Exp/Square.exp',150000.);
+md=setmask(md,'../Exp/SquareShelf.exp','');
+md=parameterize(md,'../Par/SquareSheetShelf.par');
+md=extrude(md,4,1.);
+md=setflowequation(md,'l1l2','all');
+md.cluster=generic('name',oshostname(),'np',3);
+md=solve(md,DiagnosticSolutionEnum());
+
+%Fields and tolerances to track changes
+field_names     ={'Vx','Vy','Vz','Vel','Pressure'};
+field_tolerances={1e-13,1e-13,1e-13,1e-13,1e-13};
+field_values={...
+	(md.results.DiagnosticSolution.Vx),...
+	(md.results.DiagnosticSolution.Vy),...
+	(md.results.DiagnosticSolution.Vz),...
+	(md.results.DiagnosticSolution.Vel),...
+	(md.results.DiagnosticSolution.Pressure),...
+	};
Index: /issm/trunk-jpl/test/NightlyRun/test434.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test434.py	(revision 15524)
+++ /issm/trunk-jpl/test/NightlyRun/test434.py	(revision 15524)
@@ -0,0 +1,28 @@
+import numpy
+from model import *
+from EnumDefinitions import *
+from MatlabFuncs import *
+from triangle import *
+from setmask import *
+from parameterize import *
+from setflowequation import *
+from solve import *
+
+md=triangle(model(),'../Exp/Square.exp',150000.)
+md=setmask(md,'../Exp/SquareShelf.exp','')
+md=parameterize(md,'../Par/SquareSheetShelf.py')
+md.extrude(4,1.)
+md=setflowequation(md,'l1l2','all')
+md.cluster=generic('name',oshostname(),'np',3)
+md=solve(md,DiagnosticSolutionEnum())
+
+#Fields and tolerances to track changes
+field_names     =['Vx','Vy','Vz','Vel','Pressure']
+field_tolerances=[1e-13,1e-13,1e-13,1e-13,1e-13]
+field_values=[\
+	md.results.DiagnosticSolution.Vx,\
+	md.results.DiagnosticSolution.Vy,\
+	md.results.DiagnosticSolution.Vz,\
+	md.results.DiagnosticSolution.Vel,\
+	md.results.DiagnosticSolution.Pressure,\
+	]
