Lines Matching +full:stdout +full:- +full:path
3 # SPDX-License-Identifier: GPL-2.0+
18 os.path.join(os.getcwd(), '..', '..'),
19 os.path.join(top_level, 'tools'),
20 os.path.join(top_level, 'scripts'),
24 for path in try_list:
25 fname = os.path.join(path, 'checkpatch.pl')
26 if os.path.isfile(fname):
30 while not os.path.ismount(path):
31 fname = os.path.join(path, 'src', 'third_party', 'kernel', 'files',
33 if os.path.isfile(fname):
35 path = os.path.dirname(path)
37 sys.exit('Cannot find checkpatch.pl - please put it in your ' +
38 '~/bin directory or use --no-check')
55 stdout: Full output of checkpatch
58 'stdout']
66 result.stdout = command.Output(chk, '--no-tree', fname,
68 #pipe = subprocess.Popen(cmd, stdout=subprocess.PIPE)
69 #stdout, stderr = pipe.communicate()
84 for line in result.stdout.splitlines():
165 #print(stdout)