← Back to team overview

yade-dev team mailing list archive

[Branch ~yade-dev/yade/trunk] Rev 2853: - don't exit the checkList when one checkTest fails, we want all of them tested in all cases

 

------------------------------------------------------------
revno: 2853
committer: Bruno Chareyre <bruno.chareyre@xxxxxxxxxxx>
branch nick: trunk
timestamp: Wed 2011-05-04 10:59:12 +0200
message:
  - don't exit the checkList when one checkTest fails, we want all of them tested in all cases
modified:
  scripts/test/checks/checkList.py


--
lp:yade
https://code.launchpad.net/~yade-dev/yade/trunk

Your team Yade developers is subscribed to branch lp:yade.
To unsubscribe from this branch go to https://code.launchpad.net/~yade-dev/yade/trunk/+edit-subscription
=== modified file 'scripts/test/checks/checkList.py'
--- scripts/test/checks/checkList.py	2011-03-15 08:17:29 +0000
+++ scripts/test/checks/checkList.py	2011-05-04 08:59:12 +0000
@@ -12,13 +12,11 @@
 			execfile(checksPath+"/"+script)
 			if (resultStatus):
 				print "Status: FAILURE!!!"
-				break
 			else:
 				print "Status: success"
 			print "___________________________________"
 		except:
 			print script," failure"
-			break
 		O.reset()
 		
 if (resultStatus):