Skip to content
Snippets Groups Projects
Commit 3c52c6f2 authored by Libor Peltan's avatar Libor Peltan Committed by Daniel Salzman
Browse files

tests-extra: improve error output if libknot not usable

parent bb1319a4
No related branches found
No related tags found
1 merge request!1695Improve error output if libknot not usable in tests-extra
Pipeline #128401 passed
......@@ -312,6 +312,12 @@ def main(args):
log.info("KNOT TESTING SUITE %s" % today)
log.info("Working directory %s" % outs_dir)
try:
import dnstest.libknot
except Exception as e:
log.error(str(e))
sys.exit(1)
ref_time = datetime.datetime.now().replace(microsecond=0)
if params.jobs > 1: # Multi-thread run
......
......@@ -12,5 +12,5 @@ try:
import libknot.control
import libknot.probe
libknot.Knot(params.libknot_lib)
except:
raise Skip("libknot not available or set KNOT_TEST_LIBKNOT to another libknot without ASAN")
except Exception as e:
raise Skip("libknot error (%s)" % str(e))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment