Index: sm/trunk-jpl/test/NightlyRun/ad.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/ad.m	(revision 21032)
+++ 	(revision )
@@ -1,30 +1,0 @@
-md=triangle(model(),'../Exp/Square.exp',100000.);
-md=setmask(md,'all','');
-md=parameterize(md,'../Par/SquareShelfConstrained.par');
-md=setflowequation(md,'SSA','all');
-md.cluster=generic('name',oshostname(),'np',3);
-
-md.autodiff.isautodiff=true;
-md.verbose.autodiff=true;
-md.autodiff.independents={...
-	independent('name','md.geometry.thickness','type','vertex','nods',md.mesh.numberofvertices);
-	%independent('name','md.geometry.thickness','type','vertex','nods',md.mesh.numberofvertices,'fov_forward_indices',(1:md.mesh.numberofvertices)')
-	%independent('name','md.geometry.thickness','type','vertex','nods',md.mesh.numberofvertices,'fos_forward_index',1)
-	};
-
-md.autodiff.dependents={...
-	dependent('name','MaxVel','type','scalar','fos_reverse_index',1)...
-	%dependent('name','IceVolume','type','scalar')...
-	%dependent('name','MassFlux','type','scalar','exp','../Exp/MassFlux1.exp','mesh',md.mesh,'index',1)...
-	%dependent('name','MassFlux','type','scalar','exp','../Exp/MassFlux2.exp','mesh',md.mesh,'index',2)...
-	};
-
-%md.autodiff.driver='fos_forward';
-md.autodiff.driver='fos_reverse';
-
-md=solve(md,TransientSolutionEnum());
-
-%plot
-nods=md.mesh.numberofvertices;
-jac=md.results.TransientSolution(1).AutodiffJacobian;
-plotmodel(md,'data',jac(1:nods),'data',jac(nods+1:2*nods),'data',jac(2*nods+1:3*nods),'data',jac(3*nods+1:4*nods));
Index: sm/trunk-jpl/test/NightlyRun/ad_maxalloc.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/ad_maxalloc.m	(revision 21032)
+++ 	(revision )
@@ -1,19 +1,0 @@
-md=triangle(model(),'../Exp/Square.exp',100000.);
-md=setmask(md,'all','');
-md=parameterize(md,'../Par/SquareShelfConstrained.par');
-md=setflowequation(md,'SSA','all');
-md.cluster=generic('name',oshostname(),'np',3);
-
-md.autodiff.isautodiff=true;
-md.verbose.autodiff=true;
-md.autodiff.independents={...
-	independent('name','md.geometry.thickness','type','vertex','nods',md.mesh.numberofvertices,'fov_forward_indices',(1:md.mesh.numberofvertices)')
-	};
-
-md.autodiff.dependents={...
-	dependent('name','MaxVel','type','scalar')
-	};
-
-md.autodiff.driver='fov_forward';
-
-md=solve(md,TransientSolutionEnum());
Index: sm/trunk-jpl/test/NightlyRun/android.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/android.m	(revision 21032)
+++ 	(revision )
@@ -1,32 +1,0 @@
-md=triangle(model(),'../Exp/Square.exp',40000.);
-md=setmask(md,'all','');
-md=parameterize(md,'../Par/SquareShelfConstrained.par');
-md=setflowequation(md,'SSA','all');
-md.cluster=generic('name',oshostname(),'np',3);
-md.verbose=verbose('mprocessor',true,'module',true,'solution',true,'solver',true,'convergence',true,'control',true,'qmu',true,'autodiff',true);
-md.stressbalance.requested_outputs={'StressTensor'};
-md=solve(md,StressbalanceSolutionEnum());
-
-	
-index=md.mesh.elements;
-nel=length(index);
-x=md.mesh.x;
-y=md.mesh.y;
-z=md.mesh.z;
-vel=md.results.StressbalanceSolution.Vel;
-
-patch=zeros(nel,12);
-for i=1:nel,
-	patch(i,1)=x(index(i,1));
-	patch(i,2)=y(index(i,1));
-	patch(i,3)=z(index(i,1));
-	patch(i,4)=x(index(i,2));
-	patch(i,5)=y(index(i,2));
-	patch(i,6)=z(index(i,2));
-	patch(i,7)=x(index(i,3));
-	patch(i,8)=y(index(i,3));
-	patch(i,9)=z(index(i,3));
-	patch(i,10)=vel(index(i,1));
-	patch(i,11)=vel(index(i,2));
-	patch(i,12)=vel(index(i,3));
-end
Index: sm/trunk-jpl/test/NightlyRun/python_test_guidelines.txt
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/python_test_guidelines.txt	(revision 21032)
+++ 	(revision )
@@ -1,12 +1,0 @@
-Guidelines for language-independent tests (as much as possible!):
-
-- Functions (e.g., model() and Enum()) have argument lists, even if blank.  Add the parentheses to distinguish them from variables.
-- Floating points numbers should have decimal points.  Expressions without decimals (e.g. 2/7) can evaluate incorrectly.
-- Make indentation consistent in appearance as well as content (e.g., don't mix tabs and equivalent number of spaces).
-- Separate statements on separate lines are more general.
-- Be careful with vectors vs. column arrays (unfortunately Matlab does not distinguish).  Documentation (like in the class def) showing whether more than one column is possible is very helpful.
-- Be careful with variable names that might be reserved words in other languages (e.g. "list").
-- Weird shortcuts for a particular language are not very general.
-- Since some languages are base 0 and some are base 1, it would be nice to name variables to clearly delineate which are indices and which are ID's (e.g., indices into node/element arrays vs. node/element ID's).  
-- Checks like isnan(array) may be ambiguous, depending on the language, so use "any" or "all" to clarify.  (Matlab seems to default to "all", though it may depend on context.)
-
