Skip to content

Commit

Permalink
Merge pull request #3538 from theotherjimmy/fix-export-tests
Browse files Browse the repository at this point in the history
Remove deprecated clean argument
  • Loading branch information
sg- committed Jan 9, 2017
2 parents 1816f0b + dacdbdc commit ff49a8c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tools/test/export/build_test.py
Expand Up @@ -167,10 +167,10 @@ def perform_exports(self, test_case):
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
Expand Down Expand Up @@ -295,4 +295,4 @@ def main():
sys.exit(len(test.failures))

if __name__ == "__main__":
main()
main()

0 comments on commit ff49a8c

Please sign in to comment.