Skip to content

Commit c29c9f1

Browse files
committed
disable DSA4096 timing tests when building for TFM
this fixes #260
1 parent 227838b commit c29c9f1

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

demos/timing.c

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -660,7 +660,9 @@ static const struct {
660660
{ 20, 128 },
661661
{ 24, 192 },
662662
{ 28, 256 },
663-
{ 32, 512 }
663+
#ifndef TFM_DESC
664+
{ 32, 512 },
665+
#endif
664666
};
665667

666668
for (x = 0; x < (sizeof(groups)/sizeof(groups[0])); x++) {

0 commit comments

Comments
 (0)