diff options
author | Yan Wang <yawanng@google.com> | 2019-10-18 13:34:56 -0700 |
---|---|---|
committer | Yan Wang <yawanng@google.com> | 2019-10-18 13:34:56 -0700 |
commit | d8f8b6658540a870487d5edc913ee9aa3db92b3e (patch) | |
tree | 5fb5a621207491a001129924736a1cd3886328f3 /startop/scripts | |
parent | d4fff1540628b04a5520ad17ad8312260d01a58d (diff) |
startop: Fix a compiler type mismatch in test.
Bug: 142958901
Test: pytest
Change-Id: Ifa0b0f85464447a5d50495d35276581176380d90
Diffstat (limited to 'startop/scripts')
-rwxr-xr-x | startop/scripts/app_startup/app_startup_runner_test.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/startop/scripts/app_startup/app_startup_runner_test.py b/startop/scripts/app_startup/app_startup_runner_test.py index 382f6f3c70ff..0c2bbea04f6a 100755 --- a/startop/scripts/app_startup/app_startup_runner_test.py +++ b/startop/scripts/app_startup/app_startup_runner_test.py @@ -92,7 +92,7 @@ def default_dict_for_parsed_args(**kwargs): """ d = {'compiler_filters': None, 'simulate': False, 'debug': False, 'output': None, 'timeout': 10, 'loop_count': 1, 'inodes': None, - 'trace_duration': None, 'compiler_type': asr.CompilerType.HOST} + 'trace_duration': None, 'compiler_type': asr.CompilerType.DEVICE} d.update(kwargs) return d |