From: Thierry Parmentelat Date: Wed, 17 Apr 2013 05:05:55 +0000 (+0200) Subject: undo previous change X-Git-Tag: tests-5.2-2~12 X-Git-Url: http://git.onelab.eu/?p=tests.git;a=commitdiff_plain;h=b0e5aea86a8b3fe92996201fdf0b2447d5e06d60 undo previous change --- diff --git a/system/Substrate.py b/system/Substrate.py index 4713553..48d6b98 100644 --- a/system/Substrate.py +++ b/system/Substrate.py @@ -845,8 +845,8 @@ class TestBox (Box): self.test_instances.append(i) i.set_broken(plcindex, step) - matcher_proc=re.compile (".*/proc/(?P[0-9]+)/cwd.*/vservers/(?P[^/]+)$") - matcher_grep=re.compile ("/vservers/(?P[^/]+)/logs/trace.*:TRACE:\s*(?P[0-9]+).*step=(?P\S+).*") + matcher_proc=re.compile (".*/proc/(?P[0-9]+)/cwd.*/root/(?P[^/]+)$") + matcher_grep=re.compile ("/root/(?P[^/]+)/logs/trace.*:TRACE:\s*(?P[0-9]+).*step=(?P\S+).*") def sense (self, options): print 'tm', self.sense_uptime() @@ -855,11 +855,11 @@ class TestBox (Box): # scan timestamps on all tests # this is likely to not invoke ssh so we need to be a bit smarter to get * expanded # xxx would make sense above too - command=['bash','-c',"grep . /vservers/*/timestamp /dev/null"] + command=['bash','-c',"grep . /root/*/timestamp /dev/null"] ts_lines=self.backquote_ssh(command,trash_err=True).split('\n') for ts_line in ts_lines: if not ts_line.strip(): continue - # expect /vservers//timestamp: + # expect /root//timestamp: try: (ts_file,timestamp)=ts_line.split(':') ts_file=os.path.dirname(ts_file) @@ -868,7 +868,7 @@ class TestBox (Box): t=self.add_timestamp(buildname,timestamp) except: print 'WARNING, could not parse ts line',ts_line - command=['bash','-c',"grep KO /vservers/*/logs/trace-* /dev/null" ] + command=['bash','-c',"grep KO /root/*/logs/trace-* /dev/null" ] trace_lines=self.backquote_ssh (command).split('\n') for line in trace_lines: if not line.strip(): continue