diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-01-24 14:04:12 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2020-01-24 14:04:12 +0100 |
commit | b55fc6241dc9e83aed74277b1d85e1e5f436b12a (patch) | |
tree | d3c1f57e2c209fce445f246e947f8a083f9cfd96 /bin | |
parent | a7cd2bc683ca03ab2787879d3db06e8d5d3fd5ca (diff) | |
download | vyos-1x-b55fc6241dc9e83aed74277b1d85e1e5f436b12a.tar.gz vyos-1x-b55fc6241dc9e83aed74277b1d85e1e5f436b12a.zip |
smoketest: inform user about current testcase
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/vyos-smoketest | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bin/vyos-smoketest b/bin/vyos-smoketest index 3c54b8780..6d3442622 100755 --- a/bin/vyos-smoketest +++ b/bin/vyos-smoketest @@ -27,6 +27,7 @@ for root, dirs, files in os.walk('/usr/libexec/vyos/tests/smoke'): if mode & S_IXOTH: try: + print('Running Testcase: ' + test_file) os.system(test_file) except Exception as e: print('Testcase "{}" raised an exception'.format(test_file)) |