From 24e40c6b70d9b4f7ebf1e02bace5794009b0c1b6 Mon Sep 17 00:00:00 2001 From: Daniil Baturin Date: Wed, 3 Jul 2019 03:11:27 +0700 Subject: Initial commit. --- bin/vyos-smoketest | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100755 bin/vyos-smoketest (limited to 'bin') diff --git a/bin/vyos-smoketest b/bin/vyos-smoketest new file mode 100755 index 000000000..b8cc36879 --- /dev/null +++ b/bin/vyos-smoketest @@ -0,0 +1,19 @@ +#!/usr/bin/env python3 + +import os +import sys + +test_dir = '/usr/libexec/vyos/tests/smoke' + +tests = ['test_load_modules.py'] + +success = True + +for t in tests: + try: + os.system(os.path.join(test_dir, t)) + except Exception as e: + success = False + +if not success: + sys.exit(1) -- cgit v1.2.3