]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
use new schema for api test
authorKees Monshouwer <mind04@monshouwer.org>
Mon, 10 Mar 2014 09:03:44 +0000 (10:03 +0100)
committermind04 <mind04@monshouwer.org>
Mon, 10 Mar 2014 10:38:22 +0000 (11:38 +0100)
regression-tests.api/runtests.py

index ab187f194c17b4a2318f5bbc65d41cf795c9952e..25f0fd9e6b65784923f41aaaa38d34deb4e86b32 100755 (executable)
@@ -64,9 +64,7 @@ if daemon == 'authoritative':
     subprocess.check_call(["rm", "-f", SQLITE_DB])
     subprocess.check_call(["make", "-C", "../pdns", "zone2sql"])
 
-    with open('../modules/gsqlite3backend/no-dnssec.schema.sqlite3.sql', 'r') as schema_file:
-        subprocess.check_call(["sqlite3", SQLITE_DB], stdin=schema_file)
-    with open('../modules/gsqlite3backend/dnssec.schema.sqlite3.sql', 'r') as schema_file:
+    with open('../modules/gsqlite3backend/schema.sqlite3.sql', 'r') as schema_file:
         subprocess.check_call(["sqlite3", SQLITE_DB], stdin=schema_file)
 
     with open('named.conf', 'w') as named_conf: