Home
last modified time | relevance | path

Searched refs:nrunning (Results 1 – 1 of 1) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_threading.py30 def __init__(self, name, testcase, sema, mutex, nrunning): argument
35 self.nrunning = nrunning
45 self.nrunning.inc()
47 print self.nrunning.get(), 'tasks are running'
48 self.testcase.assertTrue(self.nrunning.get() <= 3)
55 self.nrunning.dec()
56 self.testcase.assertTrue(self.nrunning.get() >= 0)
59 self.name, self.nrunning.get())