mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-01-12 19:55:32 +00:00
Add an alternarive full build component to all.sh
This commit is contained in:
parent
54b8eabd76
commit
0291cb7180
|
@ -602,13 +602,23 @@ component_test_full_cmake_clang () {
|
||||||
CC=clang cmake -D CMAKE_BUILD_TYPE:String=Check -D ENABLE_TESTING=On .
|
CC=clang cmake -D CMAKE_BUILD_TYPE:String=Check -D ENABLE_TESTING=On .
|
||||||
make
|
make
|
||||||
|
|
||||||
msg "test: main suites (full config)" # ~ 5s
|
msg "test: main suites (full config, clang)" # ~ 5s
|
||||||
make test
|
make test
|
||||||
|
|
||||||
msg "test: psa_constant_names (full config)" # ~ 1s
|
msg "test: psa_constant_names (full config, clang)" # ~ 1s
|
||||||
record_status tests/scripts/test_psa_constant_names.py
|
record_status tests/scripts/test_psa_constant_names.py
|
||||||
}
|
}
|
||||||
|
|
||||||
|
component_test_full_make_gcc () {
|
||||||
|
msg "build: make, full config, gcc" # ~ 50s
|
||||||
|
scripts/config.pl full
|
||||||
|
scripts/config.pl unset MBEDTLS_MEMORY_BACKTRACE # too slow for tests
|
||||||
|
make
|
||||||
|
|
||||||
|
msg "test: main suites (full config, gcc)" # ~ 5s
|
||||||
|
make test
|
||||||
|
}
|
||||||
|
|
||||||
component_build_deprecated () {
|
component_build_deprecated () {
|
||||||
msg "build: make, full config + DEPRECATED_WARNING, gcc -O" # ~ 30s
|
msg "build: make, full config + DEPRECATED_WARNING, gcc -O" # ~ 30s
|
||||||
scripts/config.pl full
|
scripts/config.pl full
|
||||||
|
|
Loading…
Reference in a new issue