From 244c06ee02993ece0cf8fe643aa7ca6fc47cf951 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20P=C3=A9gouri=C3=A9-Gonnard?= Date: Tue, 25 Mar 2014 14:13:06 +0100 Subject: [PATCH] Be more specific in ref-configs's compat.sh call --- tests/scripts/test-ref-configs.pl | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/scripts/test-ref-configs.pl b/tests/scripts/test-ref-configs.pl index 80602498cb..68a6a60bb7 100755 --- a/tests/scripts/test-ref-configs.pl +++ b/tests/scripts/test-ref-configs.pl @@ -9,10 +9,10 @@ use warnings; use strict; my %configs = ( - 'config-psk-rc4-tls1_0.h' => "-m tls1 -f 'PSK.*RC4'", + 'config-psk-rc4-tls1_0.h' => '-m tls1 -f \'^PSK.*RC4\|TLS-PSK.*RC4\'', 'config-mini-tls1_1.h' => '-m tls1_1 -f \'^DES-CBC3-SHA$\|^TLS-RSA-WITH-3DES-EDE-CBC-SHA$\'', - 'config-suite-b.h' => "-m tls1_2 -f 'ECDSA.*GCM'", + 'config-suite-b.h' => "-m tls1_2 -f 'ECDHE-ECDSA.*AES.*GCM'", ); if ($#ARGV >= 0) { @@ -54,6 +54,7 @@ while( my ($conf, $args) = each %configs ) { system( "make" ) and abort "Failed to build: $conf\n"; system( "make $test" ) and abort "Failed test suite: $conf\n"; + print "\nrunning compat.sh $args\n"; system( "cd tests && ./compat.sh $args" ) and abort "Failed compat.sh: $conf\n"; }