Lines Matching full:good
34 # @good: whether this script is expected to execute correctly
43 def test(name, size, good=True, leading="", root="./", target="/perl", argument
80 if good:
81 print("ok %d - binfmt_script %s (successful good exec)"
87 if good:
111 test(name="too-big", size=SIZE+80, good=False)
113 test(name="exact", size=SIZE, good=False)
115 test(name="exact-space", size=SIZE, good=False, leading=" ")
117 test(name="whitespace-too-big", size=SIZE+71, good=False, root="",
119 # A good path, but it gets truncated due to leading whitespace.
120 test(name="truncated", size=SIZE+17, good=False, leading=" " * 19)
122 test(name="empty", size=2, good=False, root="",
125 test(name="spaces", size=SIZE-1, good=False, root="", fill=" ",
128 test(name="newline-prefix", size=SIZE-1, good=False, leading="\n",