30a31,32
> import re
> import string
64c66,70
< execfile(joinpath(tests_root, 'configs', config + '.py'))
---
> test_filename = config
> # for ruby configurations, remove the protocol name from the test filename
> if re.search('-ruby', test_filename):
> test_filename = test_filename.split('-ruby')[0]+'-ruby'
> execfile(joinpath(tests_root, 'configs', test_filename + '.py'))