diff options
| author | HiFiPhile <[email protected]> | 2023-08-08 17:34:07 +0200 |
|---|---|---|
| committer | HiFiPhile <[email protected]> | 2023-08-08 17:34:07 +0200 |
| commit | 3444c4abe5d12ac2a74726cb244525f9481830ff (patch) | |
| tree | 778c26da2904f4ac256559bffc3251d1fba159cc | |
| parent | c24f10e4f6d46c7f65136b57be0fa2063fe7c9f2 (diff) | |
Add dummy board_test.
| -rw-r--r-- | test/hitl/hitl_test.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/test/hitl/hitl_test.py b/test/hitl/hitl_test.py index f6e741646..dc6019470 100644 --- a/test/hitl/hitl_test.py +++ b/test/hitl/hitl_test.py @@ -155,7 +155,7 @@ def test_dfu(id): print('dfu test done') def test_dfu_runtime(id): - # Wait device enum + # Wait device enum timeout = 10 while timeout: ret = subprocess.run(f'dfu-util -l', @@ -170,6 +170,9 @@ def test_dfu_runtime(id): print('dfu_runtime test done') +def test_board_test(id): + # Dummy test + pass if __name__ == '__main__': if len(sys.argv) != 2: |
