Commit e463c4f4 authored by Rusty Russell's avatar Rusty Russell

ccanlint: fix dependencies on tests_pass_without_features.

We can only test the featureless tests, once we've built them!
parent 60a487d5
......@@ -175,6 +175,6 @@ struct ccanlint tests_compile_without_features = {
.name = "Module tests compile (without features)",
.check = do_compile_tests_without_features,
.can_run = features_reduced,
.needs = "reduce_features"
.needs = "tests_compile reduce_features"
};
REGISTER_TEST(tests_compile_without_features);
......@@ -81,7 +81,7 @@ struct ccanlint tests_pass_without_features = {
.name = "Module's run and api tests pass (without features)",
.check = do_run_tests,
.handle = run_under_debugger,
.needs = "tests_pass reduce_features"
.needs = "tests_compile_without_features"
};
REGISTER_TEST(tests_pass_without_features);
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment