Skip to content

Commit

Permalink
Allow multiple entries for test_dir, separated by commas.
Browse files Browse the repository at this point in the history
For example:
[COMMON]
...
test_dir=/usr/local/autotest-tests,/usr/local/special-tests

Signed-off-by: Julius Gawlas <[email protected]>
  • Loading branch information
Julius Gawlas authored and lmr committed Oct 30, 2012
1 parent 6a56cca commit 022dc0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/shared/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -895,7 +895,7 @@ def runtest(job, url, tag, args, dargs,
'test_dir',
default="")
if bindir_config:
testdir_list.append(bindir_config)
testdir_list.extend(bindir_config.strip().split(','))

bindir = None
for t_dir in testdir_list:
Expand Down

0 comments on commit 022dc0f

Please sign in to comment.