Skip to content

Commit 91170a0

Browse files
authored
[SYCLomatic] Add auto complete test for CodePin (#588)
Signed-off-by: ChungHao Huang <andy.huang@intel.com>
1 parent e73a28a commit 91170a0

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

behavior_tests/src/bt-autocomplete/do_test.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,14 @@ def migrate_test():
5555
'silent\n'
5656
res = res and (reference == test_config.command_output)
5757

58-
call_subprocess(test_config.CT_TOOL + " --autocomplete=foo#bar##--enable-c")
58+
call_subprocess(test_config.CT_TOOL + " --autocomplete=foo#bar##--enable-ct")
5959
reference = '--enable-ctad\n'
6060
res = res and (reference == test_config.command_output)
6161

62+
call_subprocess(test_config.CT_TOOL + " --autocomplete=foo#bar##--enable-code")
63+
reference = '--enable-codepin\n'
64+
res = res and (reference == test_config.command_output)
65+
6266
call_subprocess(test_config.CT_TOOL + " --autocomplete=foo#bar###--format-range=#a")
6367
reference = 'all\n'
6468
res = res and (reference == test_config.command_output)
@@ -168,4 +172,4 @@ def build_test():
168172
return True
169173

170174
def run_test():
171-
return True
175+
return True

0 commit comments

Comments
 (0)