Add -t option to allow easy test selection.

Action verbose option correctly.
Tweak operation counts. Add empty and new instances tests.
Enable comparisons across different warp factors. Change version.
This commit is contained in:
Steve Holden 2006-05-26 16:27:59 +00:00
parent 0cbf2c5785
commit 431a76314d
17 changed files with 255 additions and 111 deletions

View file

@ -17,11 +17,16 @@ Number_of_rounds = 10
Warp_factor = 20
# Import tests
#from Empty import *
from Arithmetic import *
from Calls import *
from Constructs import *
from Lookups import *
from Instances import *
try:
from NewInstances import *
except:
print "Cannot test new-style objects"
from Lists import *
from Tuples import *
from Dict import *