curves.pl - change test script to not depend on the implementation
Currently the top-level makefile deploys commands to both Mbed TLS and the submodule. Running make in the "tests" directory builds only the TLS tests. The top level CMake on the other hand does not have the "tests" target defined, so it also cannot be used, hence the raw "make".
This commit is contained in:
parent
f425ff1457
commit
098b16ca83
1 changed files with 1 additions and 1 deletions
|
@ -57,7 +57,7 @@ for my $curve (@curves) {
|
|||
|
||||
system( "CFLAGS='-Werror -Wall -Wextra' make lib" )
|
||||
and abort "Failed to build lib: $curve\n";
|
||||
system( "cd tests && make" ) and abort "Failed to build tests: $curve\n";
|
||||
system( "make" ) and abort "Failed to build tests: $curve\n";
|
||||
system( "make test" ) and abort "Failed test suite: $curve\n";
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue