-
Notifications
You must be signed in to change notification settings - Fork 3.8k
[microTVM] Remove Arduino aot code #8869
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,52 @@ | ||
| # Licensed to the Apache Software Foundation (ASF) under one | ||
| # or more contributor license agreements. See the NOTICE file | ||
| # distributed with this work for additional information | ||
| # regarding copyright ownership. The ASF licenses this file | ||
| # to you under the Apache License, Version 2.0 (the | ||
| # "License"); you may not use this file except in compliance | ||
| # with the License. You may obtain a copy of the License at | ||
| # | ||
| # http://www.apache.org/licenses/LICENSE-2.0 | ||
| # | ||
| # Unless required by applicable law or agreed to in writing, | ||
| # software distributed under the License is distributed on an | ||
| # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
| # KIND, either express or implied. See the License for the | ||
| # specific language governing permissions and limitations | ||
| # under the License. | ||
|
|
||
| import pathlib | ||
| import re | ||
| import sys | ||
|
|
||
| import pytest | ||
|
|
||
| import conftest | ||
| from tvm.micro.project_api.server import ServerError | ||
|
|
||
|
|
||
| # A new project and workspace dir is created for EVERY test | ||
| @pytest.fixture | ||
| def workspace_dir(request, platform): | ||
| return conftest.make_workspace_dir("arduino_error_detection", platform) | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Given these fixtures are only used as part of the tests in this folder, and
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The scope fixture of That said, if you feel strongly I'm also open to other solutions, like defining multiple kinds of workspace dirs in
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Argh, I feel like I could've been clearer here, my apologies. My suggestion is not to have general functions in
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ah, that makes more sense. I like the idea of moving non-pytest code into a
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Agreed, it'd be good to have the move isolated in another PR 👍
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. i agree with @Mousius sentiment--let's place test_utils in a file called test_utils or similar. can be a follow-up PR. |
||
|
|
||
|
|
||
| @pytest.fixture | ||
| def project(platform, arduino_cli_cmd, tvm_debug, workspace_dir): | ||
| return conftest.make_kws_project(platform, arduino_cli_cmd, tvm_debug, workspace_dir) | ||
|
|
||
|
|
||
| def test_blank_project_compiles(workspace_dir, project): | ||
| project.build() | ||
|
|
||
|
|
||
| # Add a bug (an extra curly brace) and make sure the project doesn't compile | ||
| def test_bugged_project_compile_fails(workspace_dir, project): | ||
| with open(workspace_dir / "project" / "project.ino", "a") as main_file: | ||
| main_file.write("}\n") | ||
| with pytest.raises(ServerError): | ||
| project.build() | ||
|
|
||
|
|
||
| if __name__ == "__main__": | ||
| sys.exit(pytest.main([__file__] + sys.argv[1:])) | ||
Uh oh!
There was an error while loading. Please reload this page.