exclude big samples for SMALL MEMORY BSPs

This commit is contained in:
Thomas Doerfler
2010-03-29 11:30:49 +00:00
parent d52beda361
commit cdf44d93da
5 changed files with 19 additions and 9 deletions

View File

@@ -38,6 +38,10 @@ rtems_task Init(
* is required by this CPU.
*/
#if BSP_SMALL_MEMORY
printf("NO Paranoia Test. MEMORY TOO SMALL");
#else
#if (defined (m68040))
M68KFPSPInstallExceptionHandlers ();
#endif
@@ -45,5 +49,6 @@ rtems_task Init(
printf( "\n\n*** PARANOIA TEST ***\n" );
paranoia(1, args);
printf( "*** END OF PARANOIA TEST ***\n" );
#endif /* BSP_SMALL_MEMORY */
exit( 0 );
}