X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=ci%2Fcheck-cfg-flags.py;h=c33e8aa3a15015fb7e7c470def921d633cb2ceb9;hb=d74c143afe2244c39c66adef0dd13e64bdcf6681;hp=85cbde8538408c812f8b0ec4e3dd65b925c958bd;hpb=40379aa2adc41c1125d8c942b079f480fdb3cd41;p=rust-lightning diff --git a/ci/check-cfg-flags.py b/ci/check-cfg-flags.py index 85cbde85..c33e8aa3 100755 --- a/ci/check-cfg-flags.py +++ b/ci/check-cfg-flags.py @@ -13,6 +13,10 @@ def check_feature(feature): pass elif feature == "no-std": pass + elif feature == "possiblyrandom": + pass + elif feature == "getrandom": + pass elif feature == "hashbrown": pass elif feature == "backtrace": @@ -39,6 +43,8 @@ def check_feature(feature): pass elif feature == "electrum": pass + elif feature == "time": + pass elif feature == "_test_utils": pass elif feature == "_test_vectors": @@ -76,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": @@ -86,8 +96,14 @@ def check_cfg_tag(cfg): pass elif cfg == "taproot": pass + elif cfg == "async_signing": + 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