HomeSort by relevance Sort by last modified time
    Searched refs:BarrierError (Results 1 - 5 of 5) sorted by null

  /external/autotest/client/tests/barriertest/
barriertest.py 36 except error.BarrierError, e:
40 'BarrierError %s instead of BarrierAbortError.' % e)
60 except error.BarrierError, e:
64 'BarrierError %s instead of BarrierAbortError.' % e)
  /external/autotest/client/common_lib/
barrier_unittest.disabled 66 self.assertRaises(error.BarrierError, barrier.get_host_from_id, '#my_host')
114 # BarrierError since we are specifying a timeout of 0
115 self.assertRaises(error.BarrierError,
127 # BarrierError since we are asking to abort
128 self.assertRaises(error.BarrierError,
135 # BarrierError since we are specifying a timeout of 0
142 # BarrierError since we are specifying a timeout of 0
143 self.assertRaises(error.BarrierError,
156 # BarrierError since we are asking to abort
157 self.assertRaises(error.BarrierError,
    [all...]
base_barrier_unittest.py 55 self.assertRaises(error.BarrierError,
104 # BarrierError since we are specifying a timeout of 0
105 self.assertRaises(error.BarrierError,
117 # BarrierError since we are asking to abort
118 self.assertRaises(error.BarrierError,
125 # BarrierError since we are specifying a timeout of 0
132 # BarrierError since we are specifying a timeout of 0
133 self.assertRaises(error.BarrierError,
146 # BarrierError since we are asking to abort
147 self.assertRaises(error.BarrierError,
    [all...]
base_barrier.py 15 raise error.BarrierError(
19 class BarrierAbortError(error.BarrierError):
20 """Special BarrierError raised when an explicit abort is requested."""
156 raise error.BarrierError(
189 raise error.BarrierError(errmsg)
319 raise error.BarrierError("master lost client")
480 raise error.BarrierError("master abort -- barrier timeout")
482 raise error.BarrierError("master abort -- client lost")
484 raise error.BarrierError("master abort -- incorrect tag")
486 raise error.BarrierError("master abort -- duplicate client"
    [all...]