From b9ec274bed571db9c705b65bb8c0bb6409c34fc4 Mon Sep 17 00:00:00 2001 From: "Rafael G. Martins" Date: Wed, 21 Dec 2016 23:12:05 +0100 Subject: git-receiver: moved shell quote function to common --- .../check_shell_command_parser.c | 29 ---------------------- 1 file changed, 29 deletions(-) (limited to 'tests/blogc-git-receiver/check_shell_command_parser.c') diff --git a/tests/blogc-git-receiver/check_shell_command_parser.c b/tests/blogc-git-receiver/check_shell_command_parser.c index 9d0e282..a97df60 100644 --- a/tests/blogc-git-receiver/check_shell_command_parser.c +++ b/tests/blogc-git-receiver/check_shell_command_parser.c @@ -205,40 +205,11 @@ test_shell_command_parse(void **state) } -static void -test_shell_quote(void **state) -{ - char *t; - t = bgr_shell_quote(NULL); - assert_string_equal(t, "''"); - free(t); - t = bgr_shell_quote("!bola"); - assert_string_equal(t, "''\\!'bola'"); - free(t); - t = bgr_shell_quote("'bola"); - assert_string_equal(t, "''\\''bola'"); - free(t); - t = bgr_shell_quote("bo!bola"); - assert_string_equal(t, "'bo'\\!'bola'"); - free(t); - t = bgr_shell_quote("bo'bola"); - assert_string_equal(t, "'bo'\\''bola'"); - free(t); - t = bgr_shell_quote("bola!"); - assert_string_equal(t, "'bola'\\!''"); - free(t); - t = bgr_shell_quote("bola'"); - assert_string_equal(t, "'bola'\\'''"); - free(t); -} - - int main(void) { const UnitTest tests[] = { unit_test(test_shell_command_parse), - unit_test(test_shell_quote), }; return run_tests(tests); } -- cgit v1.2.3-18-g5258