From: Nick Mathewson Date: Thu, 26 Mar 2020 16:30:30 +0000 (-0400) Subject: Teach --check-subsystem-order to take input from stdin X-Git-Tag: tor-0.4.5.0-alpha-dev~74^2~5 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=978b7ef45c21169a01a81cd1b206530cbcd47fe2;p=thirdparty%2Ftor.git Teach --check-subsystem-order to take input from stdin --- diff --git a/scripts/maint/practracker/includes.py b/scripts/maint/practracker/includes.py index 7af378d5c0..7d70a6a0aa 100755 --- a/scripts/maint/practracker/includes.py +++ b/scripts/maint/practracker/includes.py @@ -254,11 +254,18 @@ def walk_c_files(topdir="src"): for err in consider_include_rules(fullpath, f): yield err +def open_or_stdin(fname): + if fname == '-': + return sys.stdin + else: + return open(fname) + def check_subsys_file(fname, uses_dirs): uses_closure = closure(uses_dirs) ok = True previous_subsystems = [] - with open(fname) as f: + + with open_or_stdin(fname) as f: for line in f: _, name, fname = line.split() fname = re.sub(r'^.*/src/', "", fname)