From aeba0ba72c669bba27ee85d23ce5490e5a513de0 Mon Sep 17 00:00:00 2001 From: florian Date: Thu, 14 Jul 2022 17:33:29 +0200 Subject: [PATCH] tests - add missing AutoconfTest object --- tests/main.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/main.py b/tests/main.py index 2983b6ff5..63276f42d 100755 --- a/tests/main.py +++ b/tests/main.py @@ -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()