Disable MBEDTLS_SELF_TEST in the TSan config

Enabling this causes TSan warnings, as some self-tests use unprotected globals
(see X_count variables in ecp.c). This isn't an issue, as these globals are only
read in self tests, which do not use threads.

Signed-off-by: Ryan Everett <ryan.everett@arm.com>
diff --git a/tests/scripts/all.sh b/tests/scripts/all.sh
index fcb465e..2b7ed00 100755
--- a/tests/scripts/all.sh
+++ b/tests/scripts/all.sh
@@ -2198,6 +2198,8 @@
     scripts/config.py full
     scripts/config.py set MBEDTLS_THREADING_C
     scripts/config.py set MBEDTLS_THREADING_PTHREAD
+    # Self-tests do not currently use multiple threads.
+    scripts/config.py unset MBEDTLS_SELF_TEST
 
     CC=clang cmake -D CMAKE_BUILD_TYPE:String=TSan .
     make