mirror of https://github.com/ARMmbed/mbed-os.git
Merge pull request #3538 from theotherjimmy/fix-export-tests
Remove deprecated clean argumentpull/3550/head
commit
ff49a8cdc1
|
@ -167,10 +167,10 @@ class ExportBuildTest(object):
|
||||||
return
|
return
|
||||||
profile = extract_profile(self.parser, self.options, toolchain)
|
profile = extract_profile(self.parser, self.options, toolchain)
|
||||||
exporter = export(test_case.mcu, test_case.ide,
|
exporter = export(test_case.mcu, test_case.ide,
|
||||||
project_id=test_case.id, zip_proj=None,
|
project_id=test_case.id, zip_proj=None,
|
||||||
clean=True, src=test_case.src,
|
src=test_case.src,
|
||||||
export_path=join(EXPORT_DIR,name_str),
|
export_path=join(EXPORT_DIR, name_str),
|
||||||
silent=True, build_profile=profile)
|
silent=True, build_profile=profile)
|
||||||
exporter.generated_files.append(join(EXPORT_DIR,name_str,test_case.log))
|
exporter.generated_files.append(join(EXPORT_DIR,name_str,test_case.log))
|
||||||
self.build_queue.put((exporter,test_case))
|
self.build_queue.put((exporter,test_case))
|
||||||
# Check if the specified name is in all_os_tests
|
# Check if the specified name is in all_os_tests
|
||||||
|
@ -295,4 +295,4 @@ def main():
|
||||||
sys.exit(len(test.failures))
|
sys.exit(len(test.failures))
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
main()
|
main()
|
||||||
|
|
Loading…
Reference in New Issue