diff options
author | Christian Breunig <christian@breunig.cc> | 2024-10-06 21:48:05 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-06 21:48:05 +0200 |
commit | beb5d83003fe54071bff044a3442c64c56f3c49c (patch) | |
tree | 9f38c92c0aa0c7b2243826153f4f6c466229739c /scripts | |
parent | eb8e689e38300284f89c80284209343ac5b6cc10 (diff) | |
parent | 57d5afe0ff6623d63f014d277246b14a1f12f62c (diff) | |
download | vyos-build-beb5d83003fe54071bff044a3442c64c56f3c49c.tar.gz vyos-build-beb5d83003fe54071bff044a3442c64c56f3c49c.zip |
Merge pull request #796 from c-po/smoketests
Testsuite: T6494: add new make target "test-interfaces"
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/check-qemu-install | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/check-qemu-install b/scripts/check-qemu-install index 21084655..8d65f8b2 100755 --- a/scripts/check-qemu-install +++ b/scripts/check-qemu-install @@ -760,7 +760,7 @@ try: if args.match: # Remove tests that we don't want to run match_str = '-o '.join([f'-name "test_*{name}*.py" ' for name in args.match.split("|")]).strip() - c.sendline(f'sudo find /usr/libexec/vyos/tests/smoke/cli/test_* -type f ! \( {match_str} \) -delete') + c.sendline(f'sudo find /usr/libexec/vyos/tests/smoke -maxdepth 2 -type f -name test_* ! \( {match_str} \) -delete') c.expect(op_mode_prompt) if args.no_interfaces: # remove interface tests as they consume a lot of time |