Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,9 @@ public void testFailure(Failure failure) throws Exception {
final String gradlew = Constants.WINDOWS ? "gradlew" : "./gradlew";
final StringBuilder b = new StringBuilder("REPRODUCE WITH: " + gradlew + " ");
String task = System.getProperty("tests.task");
boolean isBwcTest = Boolean.parseBoolean(System.getProperty("tests.bwc", "false"));
boolean isBwcTest = Boolean.parseBoolean(System.getProperty("tests.bwc", "false"))
|| System.getProperty("tests.bwc.main.version") != null
|| System.getProperty("tests.bwc.refspec.main") != null;

// append Gradle test runner test filter string
b.append("\"" + task + "\"");
Expand Down Expand Up @@ -174,7 +176,9 @@ private ReproduceErrorMessageBuilder appendESProperties() {
"tests.bwc",
"tests.bwc.version",
"build.snapshot",
"tests.configure_test_clusters_with_one_processor"
"tests.configure_test_clusters_with_one_processor",
"tests.bwc.main.version",
"tests.bwc.refspec.main"
);
if (System.getProperty("tests.jvm.argline") != null && System.getProperty("tests.jvm.argline").isEmpty() == false) {
appendOpt("tests.jvm.argline", "\"" + System.getProperty("tests.jvm.argline") + "\"");
Expand Down