diff options
author | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2018-01-07 20:54:23 +0100 |
---|---|---|
committer | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2018-01-07 20:54:23 +0100 |
commit | 758b0f711c496a1121061724573bb0eb816cd57b (patch) | |
tree | 32f49361c53f7e2b9e743fec51972b9c4266e7ad | |
parent | bcb0f034b6ed1e2b0f362747287479e17c9da2de (diff) | |
download | blogc-758b0f711c496a1121061724573bb0eb816cd57b.tar.gz blogc-758b0f711c496a1121061724573bb0eb816cd57b.tar.bz2 blogc-758b0f711c496a1121061724573bb0eb816cd57b.zip |
make: disable bm_find_binary tests when running embedded
-rw-r--r-- | src/blogc-make/exec.c | 4 | ||||
-rw-r--r-- | tests/blogc-make/check_exec.c | 6 |
2 files changed, 8 insertions, 2 deletions
diff --git a/src/blogc-make/exec.c b/src/blogc-make/exec.c index dba7e5c..551c7d7 100644 --- a/src/blogc-make/exec.c +++ b/src/blogc-make/exec.c @@ -33,8 +33,8 @@ bm_exec_find_binary(const char *argv0, const char *bin, const char *env) // for embedded blogc-make, if we are looking for blogc, we just return // argv0, because the static binary may not be named `blogc`, and we // prefer to use our own `blogc` instead of some other version around. - if (0 == strcmp(bin, "blogc")) { - return bc_strdup(argv0); + if (argv0 != NULL && bin != NULL && (0 == strcmp(bin, "blogc"))) { + return bc_shell_quote(argv0); } #endif diff --git a/tests/blogc-make/check_exec.c b/tests/blogc-make/check_exec.c index 1dac6b2..e0c9931 100644 --- a/tests/blogc-make/check_exec.c +++ b/tests/blogc-make/check_exec.c @@ -6,6 +6,10 @@ * See the file LICENSE. */ +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif /* HAVE_CONFIG_H */ + #include <stdarg.h> #include <stddef.h> #include <setjmp.h> @@ -178,7 +182,9 @@ int main(void) { const UnitTest tests[] = { +#ifndef MAKE_EMBEDDED unit_test(test_find_binary), +#endif unit_test(test_build_blogc_cmd_with_settings), unit_test(test_build_blogc_cmd_with_settings_and_dev), unit_test(test_build_blogc_cmd_without_settings), |