Index: /issm/trunk/src/m/utils/Nightly/nightlyrun.m
===================================================================
--- /issm/trunk/src/m/utils/Nightly/nightlyrun.m	(revision 732)
+++ /issm/trunk/src/m/utils/Nightly/nightlyrun.m	(revision 733)
@@ -26,5 +26,6 @@
 [status,list]=system('ls -l | grep -v CVS | grep -v cielo | awk ''{printf("%s|",$9);}'' '); %only works on *nix systems.
 list=strsplit(list,'|');
-%Go through list of decks, and run the deck runme.m files.
+
+%Go through list of decks, and run the deck runme.m files package by package.
 for i=2:length(list)-1,
 	eval(['cd ' list{i}]);
@@ -32,7 +33,12 @@
 		runme(varargin{1});
 	else
-		runme({'macayeal','ice','cielo_serial'});
+		runme({'macayeal'});
+		runme({'ice'});
+		runme({'cielo_serial'});
+		runme({'cielo_parallel'});
 	end
 	cd ..
 end
+
+%display needed by nightlyrun.sh to check that no error popped up.
 disp('NIGHTLYRUNTERMINATEDCORRECTLY');
