1
0
Fork 0

Add support for userspace to docker build commands. (#23988)

This commit is contained in:
Nick Brassel 2024-06-24 12:29:30 +10:00 committed by GitHub
parent d5e0562a70
commit 03e688e91f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 35 additions and 90 deletions

View file

@ -249,7 +249,7 @@ def test_c2json_nocpp_stdin():
def test_clean():
result = check_subcommand('clean', '-a')
check_returncode(result)
assert result.stdout.count('done') == 2
assert (result.stdout.count('done') == 2 and 'userspace' not in result.stdout) or (result.stdout.count('done') == 3 and 'userspace' in result.stdout)
def test_generate_api():