Changeset 5075e8e in rtems-tools


Ignore:
Timestamp:
09/08/18 05:36:31 (6 years ago)
Author:
Chris Johns <chrisj@…>
Branches:
5, master
Children:
5416cfa
Parents:
14a12d36
Message:

tester/bsp-builder: Yield the job control thread when in a dry-run.

This stops a dry-run blocking while the job control thread spins.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • tester/rt/check.py

    r14a12d36 r5075e8e  
    13741374                    active_jobs.remove(job)
    13751375                    self.jobs_completed += 1
    1376                 if not self.options['dry-run']:
     1376                if self.options['dry-run']:
     1377                    time.sleep(0)
     1378                else:
    13771379                    time.sleep(0.100)
    13781380        except:
Note: See TracChangeset for help on using the changeset viewer.