diff --git a/psh/test-ls-rootfs.py b/psh/test-ls-rootfs.py index 1ace2058..385af323 100644 --- a/psh/test-ls-rootfs.py +++ b/psh/test-ls-rootfs.py @@ -21,8 +21,8 @@ def assert_ls_pshcmds(p, psh_cmds): - # history and exit symlinks shouldn't be present in bin - psh_cmds = set(psh_cmds) - {'history', 'exit'} + # history, exit, clear and reset symlinks shouldn't be present in bin + psh_cmds = set(psh_cmds) - {'history', 'exit', 'clear', 'reset'} psh_cmd_pattern = CONTROL_CODE psh_cmd_pattern += r'(?P' + '|'.join(psh_cmds) + r')'