#!/bin/bash . ./Common # # Note: the hierarchy dump differs in some details from the input format. # Its main purpose is to aid with debugging, not to produce a syntactically # valid representation of the currently loaded hierarchy. # ############################################################################### tst "hierarchy: name rule" -dh < = mouse { mouse: { X=* }; cat: { Y=* }; dog: { Z=* }; }; EOF expect < { mouse: { X=* } cat: { Y=* } dog: { Z=* } } EOF #------------------------------------------------------------------------------ tst_fail "hierarchy: name set rule (invalid value)" < = mouse { mouse: { X=* }; cat: { Y=* }; boat: { Z=* }; }; EOF expect < = mouse { mouse: { X=* }; cat: { Y=* }; cat: { Z=* }; }; EOF expect < { mouse: { X=* } cat: { Y=* } cat: { Z=* } } EOF #------------------------------------------------------------------------------ tst "hierarchy: absolute value rule (with unit)" -dh < = mouse = mouse = mouse = mouse