tests - add missing AutoconfTest object

This commit is contained in:
florian 2022-07-14 17:33:29 +02:00
parent 67608a463a
commit aeba0ba72c
1 changed files with 2 additions and 0 deletions

View File

@ -47,6 +47,8 @@ for example in glob("./examples/*") :
test_obj = None
if test_type == "docker" :
test_obj = DockerTest(tests["name"], tests["timeout"], tests["tests"])
elif test_type == "autoconf" :
test_obj = AutoconfTest(tests["name"], tests["timeout"], tests["tests"])
if not test_obj.run_tests() :
log("TESTS", "", "Tests failed for " + tests["name"])
end_fun()