diff options
author | Benoit Foucher <benoit@zeroc.com> | 2009-12-18 21:13:09 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2009-12-18 21:13:09 +0100 |
commit | aa6809bd9431b5cc3952d6a6e2abde76b2bf003c (patch) | |
tree | 0da37ff519b9a3b6effbd1583b61abbf6f132c2a /cpp/test/IceGrid/replication | |
parent | http://bugzilla/bugzilla/show_bug.cgi?id=4509 - parallel build issues. (diff) | |
download | ice-aa6809bd9431b5cc3952d6a6e2abde76b2bf003c.tar.bz2 ice-aa6809bd9431b5cc3952d6a6e2abde76b2bf003c.tar.xz ice-aa6809bd9431b5cc3952d6a6e2abde76b2bf003c.zip |
Fixed bug 4511 - properties override doesn't handle quotes
Diffstat (limited to 'cpp/test/IceGrid/replication')
-rwxr-xr-x | cpp/test/IceGrid/replication/run.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cpp/test/IceGrid/replication/run.py b/cpp/test/IceGrid/replication/run.py index 2fef9022081..d7c1ccac6aa 100755 --- a/cpp/test/IceGrid/replication/run.py +++ b/cpp/test/IceGrid/replication/run.py @@ -26,8 +26,7 @@ if TestUtil.sqlType != None and TestUtil.sqlType != "QSQLITE": print "*** This test only supports Freeze or SQLite databases" sys.exit(0) -variables = "'properties-override=%s'" % \ - TestUtil.getCommandLine("", TestUtil.DriverConfig("server")).replace("--", "") +variables = "properties-override='%s'" % IceGridAdmin.iceGridNodePropertiesOverride() if TestUtil.sqlType != None: variables += " db-plugin=IceGridSqlDB:createSqlDB" |