Changeset 218 for test


Ignore:
Timestamp:
03/30/11 11:17:26 (13 years ago)
Author:
tim
Message:

converted hive's .get_root() method into the 'root' property which is cached and better validated for user friendliness

File:
1 edited

Legend:

Unmodified
Added
Removed
  • test/pyregfi-smoketest.py

    r217 r218  
    1818    while p != None:
    1919        path.append(p.name)
    20         if p.is_root():
    21             break
    22         else:
    23             p = p.get_parent()
     20        p = p.get_parent()
    2421    path.reverse()
    2522    del path[0]
     
    130127# to access various base structure attributes.
    131128def recurseKeyTally(hive):
    132     root = hive.get_root()
    133     checkValues(root)
    134     recurseTree(root, checkValues)
     129    checkValues(hive.root)
     130    recurseTree(hive.root, checkValues)
    135131    print("  Key stat: %f" % recurseKey_stat)
    136132    print("  Value stat: %f" % recurseValue_stat)
     
    143139
    144140#tests = [("iterTallyNames",iterTallyNames),("iterParentWalk",iterParentWalk),("iterTallyData",iterTallyData),]
    145 tests = [("recurseKeyTally",recurseKeyTally),]
     141tests = [("recurseKeyTally",recurseKeyTally),("iterParentWalk",iterParentWalk),]
    146142
    147143files = []
Note: See TracChangeset for help on using the changeset viewer.