Final commit with chanes related to --testlib switch and test linking for

Travis CI in github.
pull/750/head
Przemek Wirkus 2014-12-02 11:43:35 +00:00
parent a2fef756e5
commit 027a6bc35d
1 changed files with 5 additions and 5 deletions

View File

@ -108,10 +108,10 @@ def run_test_linking(dry_run):
toolchain_list = [toolchain_list]
for toolchain in toolchain_list:
tests = link["tests"]
# Call make.py for each test group for particular library
for test_lib in tests:
test_names = tests[test_lib]
test_lib_switch = "--" + test_lib if not test_lib else ""
test_lib_switch = "--" + test_lib if test_lib else ""
cmdline = "python workspace_tools/make.py -m %s -t %s %s -n %s" % (link["target"],
toolchain,
test_lib_switch,