Show More
@@ -401,9 +401,6 b' class IPTester(object):' | |||||
401 | """Run the stored commands""" |
|
401 | """Run the stored commands""" | |
402 | try: |
|
402 | try: | |
403 | retcode = self._run_cmd() |
|
403 | retcode = self._run_cmd() | |
404 | #print(self.stdout.read()) |
|
|||
405 | #print("std err") |
|
|||
406 | #print(self.stderr.read()) |
|
|||
407 | except KeyboardInterrupt: |
|
404 | except KeyboardInterrupt: | |
408 | return -signal.SIGINT |
|
405 | return -signal.SIGINT | |
409 | except: |
|
406 | except: | |
@@ -590,13 +587,7 b' def run_iptestall(inc_slow=False, fast=False):' | |||||
590 | failed = [] |
|
587 | failed = [] | |
591 | t_start = time.time() |
|
588 | t_start = time.time() | |
592 |
|
589 | |||
593 | #runners = runners[::-1] |
|
|||
594 |
|
||||
595 | print([r[0] for r in runners]) |
|
|||
596 |
|
||||
597 | try: |
|
590 | try: | |
598 |
|
||||
599 | print(len(runners)) |
|
|||
600 | all_res = p.map(do_run, runners) |
|
591 | all_res = p.map(do_run, runners) | |
601 | print('*'*70) |
|
592 | print('*'*70) | |
602 | for ((name, runner), res) in zip(runners, all_res): |
|
593 | for ((name, runner), res) in zip(runners, all_res): |
General Comments 0
You need to be logged in to leave comments.
Login now