Merge pull request #172 from ARMmbed/psa-refine.gitignore
Refine .gitignore and add test_suite_psa_crypto_metadata to cmake build
This commit is contained in:
commit
d5cea2cd01
3 changed files with 18 additions and 5 deletions
11
.gitignore
vendored
11
.gitignore
vendored
|
@ -30,12 +30,13 @@ massif-*
|
||||||
# Exported Mbed Crypto files
|
# Exported Mbed Crypto files
|
||||||
crypto/LICENSE
|
crypto/LICENSE
|
||||||
crypto/VERSION.txt
|
crypto/VERSION.txt
|
||||||
crypto/include
|
crypto/include/mbedcrypto/*.h
|
||||||
|
crypto/include/psa/*.h
|
||||||
crypto/library/*.c
|
crypto/library/*.c
|
||||||
crypto/library/libmbedcrypto*
|
crypto/programs/psa/*.c
|
||||||
|
crypto/programs/psa/*.sh
|
||||||
crypto/scripts
|
crypto/scripts
|
||||||
crypto/tests/scripts
|
crypto/tests/scripts
|
||||||
crypto/tests/suites
|
crypto/tests/suites/*.data
|
||||||
crypto/tests/test_suite*
|
crypto/tests/suites/*.function
|
||||||
crypto/programs/psa
|
|
||||||
mbedcrypto.tar.gz
|
mbedcrypto.tar.gz
|
||||||
|
|
11
crypto/.gitignore
vendored
11
crypto/.gitignore
vendored
|
@ -1,2 +1,13 @@
|
||||||
|
*.exe
|
||||||
|
*.o
|
||||||
|
*.obj
|
||||||
/docs/*.pdf
|
/docs/*.pdf
|
||||||
/docs/html
|
/docs/html
|
||||||
|
/library/libmbedcrypto*.a
|
||||||
|
/library/libmbedcrypto*.dll
|
||||||
|
/library/libmbedcrypto*.so
|
||||||
|
/library/libmbedcrypto*.so.[0-9]*
|
||||||
|
/programs/psa/crypto_examples
|
||||||
|
/programs/psa/key_ladder_demo
|
||||||
|
/programs/psa/psa_constant_names
|
||||||
|
/tests/test_suite_*
|
||||||
|
|
|
@ -111,6 +111,7 @@ add_test_suite(pkparse)
|
||||||
add_test_suite(pkwrite)
|
add_test_suite(pkwrite)
|
||||||
add_test_suite(poly1305)
|
add_test_suite(poly1305)
|
||||||
add_test_suite(psa_crypto)
|
add_test_suite(psa_crypto)
|
||||||
|
add_test_suite(psa_crypto_metadata)
|
||||||
add_test_suite(shax)
|
add_test_suite(shax)
|
||||||
add_test_suite(ssl)
|
add_test_suite(ssl)
|
||||||
add_test_suite(timing)
|
add_test_suite(timing)
|
||||||
|
|
Loading…
Reference in a new issue