Skip to content
  • Iustin Pop's avatar
    Fix htool unittest failure due to invalid prereqs · 3158250d
    Iustin Pop authored
    
    
    Currently, the test prop_Node_rMem does some reserved memory checks on
    nodes, and for the test to work correctly (can add more instances) we
    require that the node free memory is greater than zero via a
    prerequisite.
    
    However, if the node free memory is exactly 1, the call to
    setInstanceSmallerThanNode will set the instance memory to "free
    memory `div` 2", and since this is integer division, the instance
    memory will get set to 0. Which means that the node reserved memory
    will not increase when we add this instance as secondary.
    
    To work around, we simply require that the node memory is high enough
    (we use our 'base' unit of memory).
    
    Signed-off-by: default avatarIustin Pop <iustin@google.com>
    Reviewed-by: default avatarGuido Trotter <ultrotter@google.com>
    3158250d