tests: crypto: disable 2 tests that are ridiculously slow

Change-Id: I54194c06a1f3dfe1412dbfff50e9866134cf881a
Signed-off-by: Anas Nashif <anas.nashif@intel.com>
This commit is contained in:
Anas Nashif 2017-04-14 10:08:44 -04:00
commit 4c80a2fb71
2 changed files with 4 additions and 3 deletions

View file

@ -383,7 +383,7 @@ uint32_t test_12(void)
TC_END_RESULT(result);
return result;
}
#if EXTREME_SLOW
uint32_t test_13(void)
{
uint32_t result = TC_PASS;
@ -445,6 +445,7 @@ uint32_t test_14(void)
TC_END_RESULT(result);
return result;
}
#endif
/*
* Main task to test AES
@ -516,6 +517,7 @@ void main(void)
TC_ERROR("SHA256 test #12 failed.\n");
goto exitTest;
}
#if EXTRME_SLOW
result = test_13();
if (result == TC_FAIL) { /* terminate test */
TC_ERROR("SHA256 test #13 failed.\n");
@ -526,6 +528,7 @@ void main(void)
TC_ERROR("SHA256 test #14 failed.\n");
goto exitTest;
}
#endif
TC_PRINT("All SHA256 tests succeeded!\n");

View file

@ -2,7 +2,6 @@
tags = crypto sha256
build_only = false
timeout = 10800
slow = True
arch_whitelist = arm arc x86
filter = ( CONFIG_SRAM_SIZE > 32 or CONFIG_DCCM_SIZE > 32 or CONFIG_RAM_SIZE > 32 )
@ -10,5 +9,4 @@ filter = ( CONFIG_SRAM_SIZE > 32 or CONFIG_DCCM_SIZE > 32 or CONFIG_RAM_SIZE > 3
tags = crypto sha256
build_only = false
timeout = 10800
slow = True
arch_whitelist = nios2