This commit is contained in:
Costa Shulyupin 2018-08-08 09:08:20 +03:00
parent 077ddeea94
commit b80c118edd
1 changed files with 4 additions and 2 deletions

View File

@ -864,14 +864,16 @@ me = os.path.basename(sys.argv[0])
def usage(): def usage():
print("Usage:\n")
for c in ["referers_tree", "call_tree", "referers_dep", "call_dep"]: for c in ["referers_tree", "call_tree", "referers_dep", "call_dep"]:
print(me, c, "<identifier>") print(me, c, "<identifier>")
print("Try this:") print("\nTry this:\n")
print("cd linux/init") print("cd linux/init")
print(me, "unittest") print(me, "unittest")
print(me, "referers_tree nfs_root_data") print(me, "referers_tree nfs_root_data")
print(me, "call_tree start_kernel") print(me, "call_tree start_kernel")
print(me, "Emergency termination: ^Z, kill %1") print("Emergency termination: ^Z, kill %1")
print()
class _unittest_autotest(unittest.TestCase): class _unittest_autotest(unittest.TestCase):