30a31,33
>
> from os.path import join as joinpath
>
44c47
< test_progs = os.path.join(tests_root, 'test-progs')
---
> test_progs = joinpath(tests_root, 'test-progs')
51c54
< return os.path.join(test_progs, app, 'bin', isa, opsys, file)
---
> return joinpath(test_progs, app, 'bin', isa, opsys, file)
58c61
< return os.path.join(test_progs, app, 'input', file)
---
> return joinpath(test_progs, app, 'input', file)
61c64,65
< execfile(os.path.join(tests_root, 'configs', config + '.py'))
---
> sys.path.append(joinpath(tests_root, 'configs'))
> execfile(joinpath(tests_root, 'configs', config + '.py'))
67a72,73
> sys.path.append(joinpath(tests_root, category, name))
> execfile(joinpath(tests_root, category, name, 'test.py'))
69,70d74
< execfile(os.path.join(tests_root, category, name, 'test.py'))
<