Index: /issm/trunk/test/NightlyRun/runme.m
===================================================================
--- /issm/trunk/test/NightlyRun/runme.m	(revision 5314)
+++ /issm/trunk/test/NightlyRun/runme.m	(revision 5315)
@@ -75,8 +75,8 @@
 list_ids=[];
 for i=1:numel(list),
-	if ( strncmpi(list(i).name,'test',4) &...                         %File name must start with 'test'
-			strncmpi(fliplr(list(i).name),fliplr('.m'),2)&...           %File name must end by '.m'
-			~strncmpi(fliplr(list(i).name),fliplr('_nightly.m'),10)),   %File name end should be different that '_nightly.m'
-		list_ids(end+1)=eval(list(i).name(5:end-2));                   %Keep test id only (skip 'test' and '.m')
+	if ( strncmp(list(i).name,'test',4) &...                         %File name must start with 'test'
+			strncmp(fliplr(list(i).name),fliplr('.m'),2)&...           %File name must end by '.m'
+			~strcmp(list(i).name,'test.m'))                            %File name must be different than 'test.m'
+		list_ids(end+1)=eval(list(i).name(5:end-2));                  %Keep test id only (skip 'test' and '.m')
 	end
 end
