From 0dcf1a76fd0407cfc0430a8fb8147182b18f9aa1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Mat=C4=9Bj=C4=8Dek?= Date: Fri, 6 Dec 2024 14:34:32 +0100 Subject: [PATCH] Disabled automatic rerun of failed TCK tests - should pass on the first attempt. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: David Matějček --- .../main/java/org/glassfish/main/tests/tck/ant/TckRunner.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/appserver/tests/tck/platform-tck-runner/src/main/java/org/glassfish/main/tests/tck/ant/TckRunner.java b/appserver/tests/tck/platform-tck-runner/src/main/java/org/glassfish/main/tests/tck/ant/TckRunner.java index 2318181dac8..13403a6eaf3 100644 --- a/appserver/tests/tck/platform-tck-runner/src/main/java/org/glassfish/main/tests/tck/ant/TckRunner.java +++ b/appserver/tests/tck/platform-tck-runner/src/main/java/org/glassfish/main/tests/tck/ant/TckRunner.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2022 Eclipse Foundation and/or its affiliates. All rights reserved. + * Copyright (c) 2022, 2024 Contributors to the Eclipse Foundation. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0, which is available at @@ -219,6 +219,7 @@ private void configureEnvironment(Map env) { env.put("GF_LOGGING_CFG_VI", cfg.getServerLoggingProperties().getAbsolutePath()); env.put("DATABASE", "JavaDB"); env.put("CLIENT_LOGGING_CFG", cfg.getClientLoggingProperties().getAbsolutePath()); + env.put("ENABLE_RERUN", "false"); LOG.log(Level.DEBUG, "Configured environment: \n{0}", env); }