mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2026-09-09 03:39:56 +00:00
Improve tests/scripts/depends.py code
As suggested by gilles-peskine-arm. Co-authored-by: Gilles Peskine <[email protected]> Signed-off-by: Andrzej Kurek <[email protected]>
This commit is contained in:
co-authored by
Gilles Peskine
parent
3ebe7d6260
commit
3e7666b95d
@@ -139,13 +139,12 @@ which will make a symbol defined with a certain value."""
|
||||
if value is False:
|
||||
log_command(['config.py', 'unset', option])
|
||||
conf.unset(option)
|
||||
elif value is True:
|
||||
log_command(['config.py', 'set', option])
|
||||
conf.set(option)
|
||||
else:
|
||||
if value is True:
|
||||
log_command(['config.py', 'set', option])
|
||||
conf.set(option)
|
||||
else:
|
||||
log_command(['config.py', 'set', option, value])
|
||||
conf.set(option, value)
|
||||
log_command(['config.py', 'set', option, value])
|
||||
conf.set(option, value)
|
||||
return True
|
||||
|
||||
def set_reference_config(conf, options, colors):
|
||||
|
||||
Reference in New Issue
Block a user