Lines Matching +full:stdout +full:- +full:path
1 # SPDX-License-Identifier: GPL-2.0+
17 os.path.join(os.getcwd(), '..', '..'),
18 os.path.join(top_level, 'tools'),
19 os.path.join(top_level, 'scripts'),
23 for path in try_list:
24 fname = os.path.join(path, 'checkpatch.pl')
25 if os.path.isfile(fname):
29 while not os.path.ismount(path):
30 fname = os.path.join(path, 'src', 'third_party', 'kernel', 'files',
32 if os.path.isfile(fname):
34 path = os.path.dirname(path)
36 sys.exit('Cannot find checkpatch.pl - please put it in your ' +
37 '~/bin directory or use --no-check')
54 stdout: Full output of checkpatch
57 'stdout']
65 result.stdout = command.Output(chk, '--no-tree', fname,
67 #pipe = subprocess.Popen(cmd, stdout=subprocess.PIPE)
68 #stdout, stderr = pipe.communicate()
83 for line in result.stdout.splitlines():
164 #print(stdout)