[ci] test with time sync and header ie (#3514)

This commit adds the missing test with ie present by enabling TIME_SYNC
feature, so that IE code are covered.
This commit is contained in:
Yakun Xu
2019-02-01 16:08:43 -08:00
committed by Jonathan Hui
parent db67b3a980
commit e68e86317e
11 changed files with 166 additions and 6 deletions
@@ -48,6 +48,7 @@ class TlvType(IntEnum):
ND_DATA = 9
THREAD_NETWORK_DATA = 10
MLE_ROUTING = 11
XTAL_ACCURACY = 254
class StatusValues(IntEnum):
@@ -274,6 +275,18 @@ class NdDataFactory(object):
def parse(self, data, message_info):
raise NotImplementedError("TODO: Not implemented yet")
class XtalAccuracy:
# TODO: Not implemented yet
def __init__(self):
print("XtalAccuracy is not implemented yet.")
class XtalAccuracyFactory:
def parse(self, data, message_info):
return XtalAccuracy()
class ThreadNetworkData(object):