diff options
author | Jose <jose@zeroc.com> | 2009-11-17 20:43:38 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2009-11-17 20:43:38 +0100 |
commit | c031a4c25d63772bae29fce314233910cc9402b3 (patch) | |
tree | f610dc9c75686ff3e11f58b8f7a6eae6c4c109b6 /cpp/test/FreezeScript/dbmap/run.py | |
parent | Minor fix to cookbook/compression to compile on x64 (diff) | |
download | ice-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-x | cpp/test/FreezeScript/dbmap/run.py | 6 |
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]) |