blob: 85eb7e6514535f995597dcd832a98fd551796d3a [file] [log] [blame]
Manuel Pégourié-Gonnard2727dc12014-11-19 20:02:46 +01001#!/usr/bin/perl
2
Simon Butcher3000f782016-03-04 23:26:57 +00003# curves.pl
Manuel Pégourié-Gonnard2727dc12014-11-19 20:02:46 +01004#
Simon Butcher3000f782016-03-04 23:26:57 +00005# Copyright (c) 2014-2016, ARM Limited, All Rights Reserved
6#
7# Purpose
8#
9# To test the code dependencies on individual curves in each test suite. This
10# is a verification step to ensure we don't ship test suites that do not work
11# for some build options.
12#
13# The process is:
14# for each possible curve
15# build the library and test suites with the curve disabled
16# execute the test suites
17#
18# And any test suite with the wrong dependencies will fail.
19#
20# Usage: curves.pl
21#
22# This script should be executed from the root of the project directory.
Manuel Pégourié-Gonnard2727dc12014-11-19 20:02:46 +010023
24use warnings;
25use strict;
26
27-d 'library' && -d 'include' && -d 'tests' or die "Must be run from root\n";
28
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020029my $sed_cmd = 's/^#define \(MBEDTLS_ECP_DP.*_ENABLED\)/\1/p';
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000030my $config_h = 'include/mbedtls/config.h';
Manuel Pégourié-Gonnard2727dc12014-11-19 20:02:46 +010031my @curves = split( /\s+/, `sed -n -e '$sed_cmd' $config_h` );
32
Manuel Pégourié-Gonnard2727dc12014-11-19 20:02:46 +010033system( "cp $config_h $config_h.bak" ) and die;
34sub abort {
35 system( "mv $config_h.bak $config_h" ) and warn "$config_h not restored\n";
36 die $_[0];
37}
38
39for my $curve (@curves) {
40 system( "cp $config_h.bak $config_h" ) and die "$config_h not restored\n";
Manuel Pégourié-Gonnard8a7a1892015-10-20 16:56:12 +020041 # depends on a specific curve. Also, ignore error if it wasn't enabled
42 system( "scripts/config.pl unset MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED" );
Manuel Pégourié-Gonnard2727dc12014-11-19 20:02:46 +010043 system( "make clean" ) and die;
44
45 print "\n******************************************\n";
46 print "* Testing without curve: $curve\n";
47 print "******************************************\n";
48
49 system( "scripts/config.pl unset $curve" )
50 and abort "Failed to disable $curve\n";
51
Manuel Pégourié-Gonnard6657b8d2015-09-17 13:46:21 +020052 system( "make lib" ) and abort "Failed to build lib: $curve\n";
Manuel Pégourié-Gonnard2727dc12014-11-19 20:02:46 +010053 system( "cd tests && make" ) and abort "Failed to build tests: $curve\n";
Manuel Pégourié-Gonnard1780f892015-07-08 22:08:02 +010054 system( "make test" ) and abort "Failed test suite: $curve\n";
Manuel Pégourié-Gonnard2727dc12014-11-19 20:02:46 +010055
56}
57
58system( "mv $config_h.bak $config_h" ) and die "$config_h not restored\n";
59system( "make clean" ) and die;
60exit 0;