summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--test/pacman/pmtest.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/pacman/pmtest.py b/test/pacman/pmtest.py
index 09baac7a..7ed30eb9 100644
--- a/test/pacman/pmtest.py
+++ b/test/pacman/pmtest.py
@@ -37,6 +37,7 @@ class pmtest(object):
self.name = name
self.testname = os.path.basename(name).replace('.py', '')
self.root = root
+ self.dbver = 9
self.cachepkgs = True
def __str__(self):
@@ -180,9 +181,9 @@ class pmtest(object):
for pkg in self.db["local"].pkgs:
vprint("\tinstalling %s" % pkg.fullname())
pkg.install_package(self.root)
- if self.db["local"].pkgs:
+ if self.db["local"].pkgs and self.dbver >= 9:
path = os.path.join(self.root, util.PM_DBPATH, "local")
- util.mkfile(path, "ALPM_DB_VERSION", "9")
+ util.mkfile(path, "ALPM_DB_VERSION", str(self.dbver))
# Done.
vprint(" Taking a snapshot of the file system")