summaryrefslogtreecommitdiffstats
path: root/testsuites/sptests
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2015-04-16 11:23:29 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2015-04-16 11:36:48 +0200
commite98df4d8d03299ded58427ec6b22b2e409af5865 (patch)
tree2b5672956b25ce6f0c97b216c1141ab3395f06b9 /testsuites/sptests
parentscore: Add const qualifier (diff)
downloadrtems-e98df4d8d03299ded58427ec6b22b2e409af5865.tar.bz2
score: Add _ISR_lock_Flash()
Diffstat (limited to 'testsuites/sptests')
-rw-r--r--testsuites/sptests/sp37/init.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/testsuites/sptests/sp37/init.c b/testsuites/sptests/sp37/init.c
index f838f310a2..e8c415d5a7 100644
--- a/testsuites/sptests/sp37/init.c
+++ b/testsuites/sptests/sp37/init.c
@@ -179,6 +179,8 @@ static void test_isr_locks( void )
_ISR_lock_ISR_disable_and_acquire( &lock, &lock_context );
rtems_test_assert( normal_interrupt_level != _ISR_Get_level() );
+ _ISR_lock_Flash( &lock, &lock_context );
+ rtems_test_assert( normal_interrupt_level != _ISR_Get_level() );
_ISR_lock_Release_and_ISR_enable( &lock, &lock_context );
rtems_test_assert( normal_interrupt_level == _ISR_Get_level() );