summaryrefslogtreecommitdiff
path: root/smoketest
diff options
context:
space:
mode:
authorsarthurdev <965089+sarthurdev@users.noreply.github.com>2023-02-13 09:17:45 +0100
committersarthurdev <965089+sarthurdev@users.noreply.github.com>2023-02-13 18:20:12 +0100
commit06ce53e7ea7df5f8953902e28a4679650b65455a (patch)
tree8b31edebc1d9c6c3a2fd2632f427fc591ddf2f7f /smoketest
parentda37c537975de5adc111c2aca86426adc49a8637 (diff)
downloadvyos-1x-06ce53e7ea7df5f8953902e28a4679650b65455a.tar.gz
vyos-1x-06ce53e7ea7df5f8953902e28a4679650b65455a.zip
debian: T5003: Temp fix for smoketest running
Diffstat (limited to 'smoketest')
-rwxr-xr-xsmoketest/bin/vyos-smoketest2
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()