diff options
author | Christian Breunig <christian@breunig.cc> | 2023-02-15 19:05:47 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-15 19:05:47 +0100 |
commit | c8a6b4cf2efec079af558997c0600c54be45215c (patch) | |
tree | ff25541d9dad6ffd304b1de5919eb308d35f090f /smoketest/bin/vyos-smoketest | |
parent | a48940a943d237b0b2e8fcf8f9066c416d175e8d (diff) | |
parent | 819eab8708365ac5398f44c25178470358330c36 (diff) | |
download | vyos-1x-c8a6b4cf2efec079af558997c0600c54be45215c.tar.gz vyos-1x-c8a6b4cf2efec079af558997c0600c54be45215c.zip |
Merge pull request #1817 from sarthurdev/bookworm
debian: T5003: Upgrade base system to Debian 12 "Bookworm"
Diffstat (limited to 'smoketest/bin/vyos-smoketest')
-rwxr-xr-x | smoketest/bin/vyos-smoketest | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/smoketest/bin/vyos-smoketest b/smoketest/bin/vyos-smoketest index cb039db42..135388afe 100755 --- a/smoketest/bin/vyos-smoketest +++ b/smoketest/bin/vyos-smoketest @@ -26,7 +26,7 @@ for root, dirs, files in os.walk('/usr/libexec/vyos/tests/smoke'): test_file = os.path.join(root, name) mode = os.stat(test_file).st_mode - if mode & S_IXOTH: + if name.startswith("test_") and mode & S_IXOTH: print('Running Testcase: ' + test_file) process = Popen([test_file], stdout=PIPE) (output, err) = process.communicate() |