THP: Add Winamax

This commit is contained in:
Worros 2010-10-07 15:12:06 +08:00
parent b924c81ea0
commit b9420f7066

View File

@ -145,13 +145,14 @@ def main(argv=None):
EverleafErrors = FpdbError('Everleaf Poker') EverleafErrors = FpdbError('Everleaf Poker')
CarbonErrors = FpdbError('Carbon') CarbonErrors = FpdbError('Carbon')
PKRErrors = FpdbError('PKR') PKRErrors = FpdbError('PKR')
iPokerErrors = FpdbError('iPoker') iPokerErrors = FpdbError('iPoker')
WinamaxErrors = FpdbError('Winamax')
ErrorsList = [ ErrorsList = [
PokerStarsErrors, FTPErrors, PartyPokerErrors, PokerStarsErrors, FTPErrors, PartyPokerErrors,
BetfairErrors, OnGameErrors, AbsoluteErrors, BetfairErrors, OnGameErrors, AbsoluteErrors,
EverleafErrors, CarbonErrors, PKRErrors, EverleafErrors, CarbonErrors, PKRErrors,
iPokerErrors iPokerErrors, WinamaxErrors
] ]
sites = { sites = {
@ -165,6 +166,7 @@ def main(argv=None):
'Carbon' : True, 'Carbon' : True,
'PKR' : True, 'PKR' : True,
'iPoker' : True, 'iPoker' : True,
'Winamax' : True,
} }
if sites['PokerStars'] == True: if sites['PokerStars'] == True:
@ -190,6 +192,8 @@ def main(argv=None):
walk_testfiles("regression-test-files/cash/PKR/", compare, importer, PKRErrors, "PKR") walk_testfiles("regression-test-files/cash/PKR/", compare, importer, PKRErrors, "PKR")
if sites['iPoker'] == True: if sites['iPoker'] == True:
walk_testfiles("regression-test-files/cash/iPoker/", compare, importer, iPokerErrors, "iPoker") walk_testfiles("regression-test-files/cash/iPoker/", compare, importer, iPokerErrors, "iPoker")
if sites['Winamax'] == True:
walk_testfiles("regression-test-files/cash/Winamax/", compare, importer, WinamaxErrors, "Winamax")
totalerrors = 0 totalerrors = 0