summaryrefslogtreecommitdiff
path: root/cpp/test/FreezeScript/dbmap/run.py
diff options
context:
space:
mode:
authorJose <jose@zeroc.com>2009-11-17 20:43:38 +0100
committerJose <jose@zeroc.com>2009-11-17 20:43:38 +0100
commitc031a4c25d63772bae29fce314233910cc9402b3 (patch)
treef610dc9c75686ff3e11f58b8f7a6eae6c4c109b6 /cpp/test/FreezeScript/dbmap/run.py
parentMinor fix to cookbook/compression to compile on x64 (diff)
downloadice-c031a4c25d63772bae29fce314233910cc9402b3.tar.bz2
ice-c031a4c25d63772bae29fce314233910cc9402b3.tar.xz
ice-c031a4c25d63772bae29fce314233910cc9402b3.zip
4166 - Investigate appverifier (Added support to run test suite with it)
Diffstat (limited to 'cpp/test/FreezeScript/dbmap/run.py')
-rwxr-xr-xcpp/test/FreezeScript/dbmap/run.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/cpp/test/FreezeScript/dbmap/run.py b/cpp/test/FreezeScript/dbmap/run.py
index 1cbc620a9dc..305be843ca8 100755
--- a/cpp/test/FreezeScript/dbmap/run.py
+++ b/cpp/test/FreezeScript/dbmap/run.py
@@ -20,8 +20,12 @@ if len(path) == 0:
sys.path.append(os.path.join(path[0]))
from scripts import *
+
transformdb = os.path.join(TestUtil.getCppBinDir(), "transformdb")
+if TestUtil.appverifier:
+ TestUtil.setAppVerifierSettings([transformdb])
+
dbdir = os.path.join(os.getcwd(), "db")
TestUtil.cleanDbDir(dbdir)
@@ -138,3 +142,5 @@ if os.system(command) != 0:
print "ok"
+if TestUtil.appverifier:
+ TestUtil.appVerifierAfterTestEnd([transformdb])