-
Notifications
You must be signed in to change notification settings - Fork 3.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[microTVM] Remove Arduino aot code (#8869)
* Fix Arduino DLDevice includes * microtvm_api_server fails if commands fail * Add regression test for microtvm_api_server not failing * Address PR comments Break error detection tests into separate file Address comments from Mousius Re-add necessary fixture
- Loading branch information
Showing
7 changed files
with
105 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) | ||
|
||
|
||
@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:])) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters