diff --git a/src/sig_tesla/tesla_params.h b/src/sig_tesla/tesla_params.h
index 9adfdafcce1dcf68d6b2b4db2d4b772a4a66f1e5..15df3238e5c9cad533c6cb97e7c1a760bca9a635 100755
--- a/src/sig_tesla/tesla_params.h
+++ b/src/sig_tesla/tesla_params.h
@@ -85,8 +85,8 @@ void tesla_private_and_public_keys_delete(tesla_private_key_t *private_key, tesl
 void tesla_signature_delete(tesla_signature_t *signature);
 
 ///==========================================================================================
-typedef	int64_t __attribute__ ((aligned(32))) poly;//[ 2048 ]; //PARAM_N
-typedef	int64_t __attribute__ ((aligned(32))) poly_k;//[ 5 * 2048]; // PARAM_K * PARAM_N
+typedef	int64_t poly;//[ 2048 ]; //PARAM_N __attribute__ ((aligned(32)))
+typedef	int64_t poly_k;//[ 5 * 2048]; // PARAM_K * PARAM_N __attribute__ ((aligned(32)))
 
 int64_t init_mass_poly(poly *zeta, poly *zetainv, tesla_param_t *p);
 int64_t reduce(int64_t a, tesla_param_t *p);
diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt
index c61407755f9ff1b0e56bba8c714fa5c70b28ec93..18ed49801c7a0238d38ae31ff7cc41f2d75d6867 100755
--- a/test/CMakeLists.txt
+++ b/test/CMakeLists.txt
@@ -3,6 +3,9 @@ project(test)
 
 set(CMAKE_C_STANDARD 11)
 
-#add_subdirectory(libdap-test)
+if(NOT SUBMODULES_NO_BUILD)
+    add_subdirectory(libdap-test)
+endif()
+
 add_subdirectory(crypto)
 add_subdirectory(cert)