From 9c84f987acb5ffc97a612839e13e8b8042e6120e Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Wed, 1 Dec 2010 16:07:56 +1100 Subject: wintest: make command matching case insensitive by default the new BASEDN changes break the RODC join otherwise Autobuild-User: Andrew Tridgell Autobuild-Date: Wed Dec 1 06:54:13 CET 2010 on sn-devel-104 --- wintest/wintest.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'wintest') diff --git a/wintest/wintest.py b/wintest/wintest.py index 5f7bd0a8d53..4ba4b4dc9a7 100644 --- a/wintest/wintest.py +++ b/wintest/wintest.py @@ -177,7 +177,7 @@ class wintest(): return self.run_cmd(cmd, output=True) def cmd_contains(self, cmd, contains, nomatch=False, ordered=False, regex=False, - casefold=False): + casefold=True): '''check that command output contains the listed strings''' if isinstance(contains, str): @@ -187,6 +187,9 @@ class wintest(): self.info(out) for c in self.substitute(contains): if regex: + if casefold: + c = c.upper() + out = out.upper() m = re.search(c, out) if m is None: start = -1 @@ -210,7 +213,7 @@ class wintest(): out = out[end:] def retry_cmd(self, cmd, contains, retries=30, delay=2, wait_for_fail=False, - ordered=False, regex=False, casefold=False): + ordered=False, regex=False, casefold=True): '''retry a command a number of times''' while retries > 0: try: -- cgit