diff options
| author | Martin Ritchie <ritchiem@apache.org> | 2009-09-15 08:13:21 +0000 |
|---|---|---|
| committer | Martin Ritchie <ritchiem@apache.org> | 2009-09-15 08:13:21 +0000 |
| commit | c9346545c9fa32a1e124d1842a91ad1b4588e29a (patch) | |
| tree | fe866bdd48592fc1ad0a881ee28b4b7e7c0035cb /qpid/java/systests/src | |
| parent | 4403eeede5a7b7493031eaca767c35eb093766cb (diff) | |
| download | qpid-python-c9346545c9fa32a1e124d1842a91ad1b4588e29a.tar.gz | |
Reveted changes to QPID-2099, QPID-2100. The value of PNAME must not be changed.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@815206 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java/systests/src')
| -rw-r--r-- | qpid/java/systests/src/main/java/org/apache/qpid/test/utils/QpidTestCase.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/qpid/java/systests/src/main/java/org/apache/qpid/test/utils/QpidTestCase.java b/qpid/java/systests/src/main/java/org/apache/qpid/test/utils/QpidTestCase.java index 7087473369..0acade8e4f 100644 --- a/qpid/java/systests/src/main/java/org/apache/qpid/test/utils/QpidTestCase.java +++ b/qpid/java/systests/src/main/java/org/apache/qpid/test/utils/QpidTestCase.java @@ -447,7 +447,8 @@ public class QpidTestCase extends TestCase env.put("PATH", env.get("PATH").concat(File.pathSeparator + qpidHome + "/bin")); //Add the test name to the broker run. - env.put("QPID_PNAME", _testName ); + // DON'T change PNAME, qpid.stop needs this value. + env.put("QPID_PNAME", "-DPNAME=QPBRKR -DTNAME=\"" + _testName + "\""); env.put("QPID_WORK", System.getProperty("QPID_WORK")); // Add all the environment settings the test requested |
