aboutsummaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorSean Anderson <seanga2@gmail.com>2024-04-18 22:36:30 -0400
committerSimon Glass <sjg@chromium.org>2024-07-03 07:36:32 +0100
commiteba80858039c403cb3e2ef166c7f1418838d4ec2 (patch)
treede266b4d0133a81e4b791407e941107116e57780 /tools
parent07a6c69759eb4a99f044962c8c40c093af534351 (diff)
downloadu-boot-eba80858039c403cb3e2ef166c7f1418838d4ec2.zip
u-boot-eba80858039c403cb3e2ef166c7f1418838d4ec2.tar.gz
u-boot-eba80858039c403cb3e2ef166c7f1418838d4ec2.tar.bz2
patman: Fix tests if add_maintainers is set to False
If add_maintainers is set to False in the user's ~/.patman config, it will cause the custom_get_maintainer_script to fail since that test expects maintainers to be added. Set add_maintainer to True in the .patman config to prevent this. Fixes: 8c042fb7f9f ("patman: add '--get-maintainer-script' argument") Signed-off-by: Sean Anderson <seanga2@gmail.com> Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools')
-rw-r--r--tools/patman/func_test.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/patman/func_test.py b/tools/patman/func_test.py
index e391849..9c016fb 100644
--- a/tools/patman/func_test.py
+++ b/tools/patman/func_test.py
@@ -540,7 +540,8 @@ complicated as possible''')
with open('.patman', 'w', buffering=1) as f:
f.write('[settings]\n'
'get_maintainer_script: dummy-script.sh\n'
- 'check_patch: False\n')
+ 'check_patch: False\n'
+ 'add_maintainers: True\n')
with open('dummy-script.sh', 'w', buffering=1) as f:
f.write('#!/usr/bin/env python\n'
'print("hello@there.com")\n')