From b4ae30818ed7b5e670a99518e79595e7920f8e5c Mon Sep 17 00:00:00 2001 From: Rusty Russell Date: Wed, 30 Nov 2011 08:59:11 +1030 Subject: [PATCH] ccanlint: fix depends_build_without_features This depends on reduce_features; currently it tends to run before that, so it doesn't think there are any features to reduce and doesn't build or run the tests with reduced features. --- tools/ccanlint/tests/depends_build_without_features.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/ccanlint/tests/depends_build_without_features.c b/tools/ccanlint/tests/depends_build_without_features.c index cf7185be..9982d27b 100644 --- a/tools/ccanlint/tests/depends_build_without_features.c +++ b/tools/ccanlint/tests/depends_build_without_features.c @@ -55,7 +55,7 @@ struct ccanlint depends_build_without_features = { .name = "Module's CCAN dependencies can be found or built (reduced features)", .check = check_depends_built_without_features, .can_run = can_build, - .needs = "depends_exist" + .needs = "depends_exist reduce_features" }; REGISTER_TEST(depends_build_without_features); -- 2.39.2