Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion avocado-setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -511,7 +511,7 @@ def parse_test_config(test_config_file, avocado_bin, enable_kvm):
continue
# split line ignoring quotes used for additional args
line = shlex.split(line)
test_dic['test'] = line[0].strip('$')
test_dic['test'] = os.path.join(TEST_DIR, line[0].strip('$'))
test_dic['name'] = test_dic['test'].split("/")[-1]
if ":" in test_dic['test'].split("/")[-1]:
test_dic['name'] = "%s_%s" % (test_dic['name'].split(".")[0],
Expand Down