From 5c7e94487eec04bb16d4ac6533d7bc5029cf2d03 Mon Sep 17 00:00:00 2001 From: Dave Rodgman Date: Thu, 21 Dec 2023 15:42:22 +0000 Subject: [PATCH] fix line length Signed-off-by: Dave Rodgman --- tests/scripts/depends.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/scripts/depends.py b/tests/scripts/depends.py index a7d5672be6..25a15c4756 100755 --- a/tests/scripts/depends.py +++ b/tests/scripts/depends.py @@ -381,7 +381,8 @@ class DomainData: def __init__(self, options, conf): """Gather data about the library and establish a list of domains to test.""" - build_command = [options.make_command] + options.make_vars.split(' ') + ['CFLAGS=-Werror -O2'] + build_command = [options.make_command] + options.make_vars.split(' ') + \ + ['CFLAGS=-Werror -O2'] build_and_test = [build_command, [options.make_command, 'test']] self.all_config_symbols = set(conf.settings.keys()) # Find hash modules by name.