Merge branch 'mbedtls-1.3' into development

* mbedtls-1.3:
  Update generated file
  Update Changelog for deprecation config flags
  Fix tests to work with DEPRECATED_REMOVED
  Add POLARSSL_DEPRECATED_{WARNING,REMOVED}
  Suppress clang warning we don't want
This commit is contained in:
Manuel Pégourié-Gonnard 2015-03-23 14:31:25 +01:00
commit 8a80318df2
5 changed files with 45 additions and 1 deletions

View file

@ -50,8 +50,9 @@ my %mapping_values;
while (@var_req_arr)
{
my $req = shift @var_req_arr;
$req =~ s/(!?)(.*)/$1defined($2)/;
$suite_pre_code .= "#ifdef $req\n";
$suite_pre_code .= "#if $req\n";
$suite_post_code .= "#endif /* $req */\n";
}