X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=ci%2Fcheck-cfg-flags.py;h=c33e8aa3a15015fb7e7c470def921d633cb2ceb9;hb=3ec0dcdac15eb08ed7a63feab2f210cccf06684f;hp=d6e8e0a90feff9862aaaccbe56271673d25b834d;hpb=dedc8306f68e397dd51d0e9055eab2c04e373cdf;p=rust-lightning diff --git a/ci/check-cfg-flags.py b/ci/check-cfg-flags.py index d6e8e0a9..c33e8aa3 100755 --- a/ci/check-cfg-flags.py +++ b/ci/check-cfg-flags.py @@ -13,7 +13,9 @@ def check_feature(feature): pass elif feature == "no-std": pass - elif feature == "ahash": + elif feature == "possiblyrandom": + pass + elif feature == "getrandom": pass elif feature == "hashbrown": pass @@ -80,6 +82,10 @@ def check_target_os(os): def check_cfg_tag(cfg): if cfg == "fuzzing": pass + elif cfg == "secp256k1_fuzz": + pass + elif cfg == "hashes_fuzz": + pass elif cfg == "test": pass elif cfg == "debug_assertions": @@ -94,6 +100,10 @@ def check_cfg_tag(cfg): pass elif cfg == "require_route_graph_test": pass + elif cfg == "dual_funding": + pass + elif cfg == "splicing": + pass else: print("Bad cfg tag: " + cfg) assert False