@@ -37,7 +37,7 @@ To run a subset of the test suite (do not forget to start a local RabbitMQ node)
37
37
./mvnw verify -P '!setup-test-cluster' \
38
38
-Dtest-broker.A.nodename=rabbit@$(hostname) \
39
39
-Drabbitmqctl.bin=/path/to/rabbitmqctl \
40
- -Dit.test=ClientTests,FunctionalTests,ServerTests
40
+ -Dit.test=ClientTestSuite,FunctionalTestSuite,ServerTestSuite
41
41
```
42
42
43
43
The test suite subset does not include TLS tests, which is fine for most
@@ -50,7 +50,7 @@ To run the tests against the NIO connector, add `-P use-nio` to the command line
50
50
./mvnw verify -P '!setup-test-cluster',use-nio \
51
51
-Dtest-broker.A.nodename=rabbit@$(hostname) \
52
52
-Drabbitmqctl.bin=/path/to/rabbitmqctl \
53
- -Dit.test=ClientTests,FunctionalTests,ServerTests
53
+ -Dit.test=ClientTestSuite,FunctionalTestSuite,ServerTestSuite
54
54
```
55
55
56
56
For details on running specific tests, see below.
@@ -67,7 +67,7 @@ top-level directory of the source tree:
67
67
./mvnw verify -P '!setup-test-cluster',use-nio \
68
68
-Dtest-broker.A.nodename=rabbit@$(hostname) \
69
69
-Drabbitmqctl.bin=/path/to/rabbitmqctl \
70
- -Dit.test=ClientTests
70
+ -Dit.test=ClientTestSuite
71
71
```
72
72
73
73
* To run the functional tests:
@@ -76,7 +76,7 @@ top-level directory of the source tree:
76
76
./mvnw verify -P '!setup-test-cluster',use-nio \
77
77
-Dtest-broker.A.nodename=rabbit@$(hostname) \
78
78
-Drabbitmqctl.bin=/path/to/rabbitmqctl \
79
- -Dit.test=FunctionalTests
79
+ -Dit.test=FunctionalTestSuite
80
80
```
81
81
82
82
* To run a single test:
@@ -103,7 +103,7 @@ Launch the tests:
103
103
```
104
104
./mvnw verify -P '!setup-test-cluster' \
105
105
-Drabbitmqctl.bin=DOCKER:rabbitmq \
106
- -Dit.test=ClientTests,FunctionalTests,ServerTests
106
+ -Dit.test=ClientTestSuite,FunctionalTestSuite,ServerTestSuite
107
107
```
108
108
109
109
Note the ` rabbitmqctl.bin ` system property uses the syntax
0 commit comments