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