Test: Disable single-part operation tests in Profile Small

Enable support multi-part operation tests in Profile Small to align
with TF-M changes.

Signed-off-by: David Hu <david.hu@arm.com>
Change-Id: If8aa59238f4ec37ccef8c414760c863272e5df1e
diff --git a/test/config/default_test_config.cmake b/test/config/default_test_config.cmake
index 0ddef9c..599d9ab 100644
--- a/test/config/default_test_config.cmake
+++ b/test/config/default_test_config.cmake
@@ -64,6 +64,7 @@
 set(TFM_CRYPTO_TEST_ECDH                    ON          CACHE BOOL      "Test the ECDH key agreement algorithm")
 set(TFM_CRYPTO_TEST_CHACHA20                OFF         CACHE BOOL      "Test the ChaCha20 stream cipher")
 set(TFM_CRYPTO_TEST_ALG_CHACHA20_POLY1305   OFF         CACHE BOOL      "Test ChaCha20-Poly1305 AEAD algorithm")
+set(TFM_CRYPTO_TEST_SINGLE_PART_FUNCS       ON          CACHE BOOL      "Test single-part operations in hash, MAC, AEAD and symmetric ciphers")
 
 ################################## FWU Tests ###################################
 
diff --git a/test/config/profile/profile_small_test.cmake b/test/config/profile/profile_small_test.cmake
index 177b1d1..fcc122d 100644
--- a/test/config/profile/profile_small_test.cmake
+++ b/test/config/profile/profile_small_test.cmake
@@ -19,3 +19,4 @@
 set(TFM_CRYPTO_TEST_ECDH                    OFF         CACHE BOOL      "Test the ECDH key agreement algorithm")
 set(TFM_CRYPTO_TEST_CHACHA20                OFF         CACHE BOOL      "Test the ChaCha20 stream cipher")
 set(TFM_CRYPTO_TEST_ALG_CHACHA20_POLY1305   OFF         CACHE BOOL      "Test ChaCha20-Poly1305 AEAD algorithm")
+set(TFM_CRYPTO_TEST_SINGLE_PART_FUNCS       OFF         CACHE BOOL      "Test single-part operations in hash, MAC, AEAD and symmetric ciphers")