Merge pull request #3538 from theotherjimmy/fix-export-tests

Remove deprecated clean argument
pull/3550/head
Sam Grove 2017-01-09 10:33:35 -06:00 committed by GitHub
commit ff49a8cdc1
1 changed files with 5 additions and 5 deletions

View File

@ -167,10 +167,10 @@ class ExportBuildTest(object):
return
profile = extract_profile(self.parser, self.options, toolchain)
exporter = export(test_case.mcu, test_case.ide,
project_id=test_case.id, zip_proj=None,
clean=True, src=test_case.src,
export_path=join(EXPORT_DIR,name_str),
silent=True, build_profile=profile)
project_id=test_case.id, zip_proj=None,
src=test_case.src,
export_path=join(EXPORT_DIR, name_str),
silent=True, build_profile=profile)
exporter.generated_files.append(join(EXPORT_DIR,name_str,test_case.log))
self.build_queue.put((exporter,test_case))
# Check if the specified name is in all_os_tests
@ -295,4 +295,4 @@ def main():
sys.exit(len(test.failures))
if __name__ == "__main__":
main()
main()