HEX
Server: Apache/2.4.58 (Ubuntu)
System: Linux ip-172-26-0-120 6.17.0-1009-aws #9~24.04.2-Ubuntu SMP Fri Mar 6 23:50:29 UTC 2026 x86_64
User: ubuntu (1000)
PHP: 8.3.6
Disabled: NONE
Upload Files
File: //usr/src/linux-headers-7.0.0-1009-aws/tools/testing/kunit/kunit-completion.sh
# SPDX-License-Identifier: GPL-2.0
# bash completion support for KUnit

_kunit_dir=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)

_kunit()
{
	local cur prev words cword
	_init_completion || return

	local script="${_kunit_dir}/kunit.py"

	if [[ $cword -eq 1 && "$cur" != -* ]]; then
		local cmds=$(${script} --list-cmds 2>/dev/null)
		COMPREPLY=($(compgen -W "${cmds}" -- "$cur"))
		return 0
	fi

	if [[ "$cur" == -* ]]; then
		if [[ -n "${words[1]}" && "${words[1]}" != -* ]]; then
			local opts=$(${script} ${words[1]} --list-opts 2>/dev/null)
			COMPREPLY=($(compgen -W "${opts}" -- "$cur"))
			return 0
		else
			local opts=$(${script} --list-opts 2>/dev/null)
			COMPREPLY=($(compgen -W "${opts}" -- "$cur"))
			return 0
		fi
	fi
}

complete -o default -F _kunit kunit.py
complete -o default -F _kunit kunit
complete -o default -F _kunit ./tools/testing/kunit/kunit.py