Isso provavelmente é porque você está perdendo esse teste em client/tests/sleeptest
.
Você clonou o repositório com a opção --recursive
?
git clone --recursive git://github.com/autotest/autotest.git
cd autotest
client/autotest-local --verbose run sleeptest
Isso inicializará todos os submódulos do projeto.
Páginas do manual
De git clone --help
ou man git-clone
:
--recursive, --recurse-submodules
After the clone is created, initialize all submodules within, using
their default settings. This is equivalent to running git submodule
update --init --recursive immediately after the clone is finished.
This option is ignored if the cloned repository does not have a
worktree/checkout (i.e. if any of --no-checkout/-n, --bare, or
--mirror is given)