1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
|
Description: Disable torture_path_expand_tilde_unix, its not working well on buildd
On buildd, the HOME is set to a non-existing directory, this makes
torture_path_expand_tilde_unix fail
Author: Laurent Bigonville <bigon@debian.org>
Forwarded: not-needed
Last-Update: 2024-09-02
--- a/tests/unittests/torture_misc.c
+++ b/tests/unittests/torture_misc.c
@@ -1136,11 +1136,11 @@ int torture_run_tests(void) {
cmocka_unit_test(torture_basename),
cmocka_unit_test(torture_dirname),
cmocka_unit_test(torture_ntohll),
-#ifdef _WIN32
- cmocka_unit_test(torture_path_expand_tilde_win),
-#else
- cmocka_unit_test(torture_path_expand_tilde_unix),
-#endif
+//#ifdef _WIN32
+// cmocka_unit_test(torture_path_expand_tilde_win),
+//#else
+// cmocka_unit_test(torture_path_expand_tilde_unix),
+//#endif
cmocka_unit_test_setup_teardown(torture_path_expand_escape, setup, teardown),
cmocka_unit_test_setup_teardown(torture_path_expand_known_hosts, setup, teardown),
cmocka_unit_test_setup_teardown(torture_path_expand_percent, setup, teardown),
--- a/tests/unittests/torture_config.c
+++ b/tests/unittests/torture_config.c
@@ -2391,7 +2391,7 @@ static void torture_config_make_absolute_int(void **state, bool no_sshdir_fails)
{
ssh_session session = *state;
char *result = NULL;
-#ifndef _WIN32
+#if 0
char h[256] = {0};
char *user = NULL;
char *home = NULL;
@@ -2506,7 +2506,7 @@ static void torture_config_make_absolute
assert_string_equal(result, "/tmp/ssh/my_config");
free(result);
-#ifndef _WIN32
+#if 0
/* Tilde expansion works only in user config */
result = ssh_config_make_absolute(session, "~/.ssh/config.d/*.conf", 0);
snprintf(h, 256 - 1, "%s/.ssh/config.d/*.conf", home);
|