Drop % test for illegal commands

% is perfectly valid in commands, now :)
This commit is contained in:
Mahmoud Al-Qudsi 2018-03-09 04:02:29 -06:00
parent b236ab6e5d
commit f7e0cbc7a4

View file

@ -4422,7 +4422,6 @@ static void test_illegal_command_exit_code() {
{L"echo -n", STATUS_CMD_OK}, {L"pwd", STATUS_CMD_OK},
{L")", STATUS_ILLEGAL_CMD}, {L") ", STATUS_ILLEGAL_CMD},
{L"*", STATUS_ILLEGAL_CMD}, {L"**", STATUS_ILLEGAL_CMD},
{L"%", STATUS_ILLEGAL_CMD}, {L"%test", STATUS_ILLEGAL_CMD},
{L"?", STATUS_ILLEGAL_CMD}, {L"abc?def", STATUS_ILLEGAL_CMD},
{L") ", STATUS_ILLEGAL_CMD}};