1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-07-29 11:41:15 +03:00

Invoke config.py instead of config.pl in reverted content

perl -i -pe 's/\bconfig\.pl/config.py/g' $(git grep -l -Fw config.pl
-- . '#!tests/scripts/test_config_script.py')
This commit is contained in:
Gilles Peskine
2020-02-18 17:56:33 +01:00
committed by Ronald Cron
parent 7e771c767f
commit 3b46cd3f15
4 changed files with 39 additions and 39 deletions

View File

@ -47,10 +47,10 @@ for my $kex (@kexes) {
print "******************************************\n";
# full config with all key exchanges disabled except one
system( "scripts/config.pl full" ) and abort "Failed config full\n";
system( "scripts/config.py full" ) and abort "Failed config full\n";
for my $k (@kexes) {
next if $k eq $kex;
system( "scripts/config.pl unset $k" )
system( "scripts/config.py unset $k" )
and abort "Failed to disable $k\n";
}