This is an automated email from the ASF dual-hosted git repository.
marcuse pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cassandra-dtest.git
The following commit(s) were added to refs/heads/master by this push:
new 9b93594 assert_stderr_clean should exclude JAVA_TOOL_OPTIONS
9b93594 is described below
commit 9b93594ae66b04d64f08d1e5ef979e0520f5b3a6
Author: David Capwell <[email protected]>
AuthorDate: Thu Jan 30 15:18:39 2020 -0800
assert_stderr_clean should exclude JAVA_TOOL_OPTIONS
Patch by David Capwell; reviewed by marcuse for CASSANDRA-15532
closes #56
---
tools/assertions.py | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/tools/assertions.py b/tools/assertions.py
index 1b82251..7491a4b 100644
--- a/tools/assertions.py
+++ b/tools/assertions.py
@@ -297,7 +297,8 @@ def assert_stderr_clean(err, acceptable_errors=None):
acceptable_errors = ["WARN.*JNA link failure.*unavailable.",
"objc.*Class JavaLaunchHelper.*?Which one is
undefined.",
# Stress tool JMX connection failure, see
CASSANDRA-12437
- "Failed to connect over JMX; not collecting these
stats"]
+ "Failed to connect over JMX; not collecting these
stats",
+ "Picked up JAVA_TOOL_OPTIONS:.*"]
regex_str = r"^({}|\s*|\n)*$".format("|".join(acceptable_errors))
err_str = err.strip()
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]