OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [rtos/] [rtems/] [c/] [src/] [tests/] [sptests/] [sp09/] [screen13.c] - Diff between revs 30 and 173

Only display areas with differences | Details | Blame | View Log

Rev 30 Rev 173
/*  Screen13
/*  Screen13
 *
 *
 *  This routine generates error screen 13 for test 9.
 *  This routine generates error screen 13 for test 9.
 *
 *
 *  Input parameters:  NONE
 *  Input parameters:  NONE
 *
 *
 *  Output parameters:  NONE
 *  Output parameters:  NONE
 *
 *
 *  COPYRIGHT (c) 1989-1999.
 *  COPYRIGHT (c) 1989-1999.
 *  On-Line Applications Research Corporation (OAR).
 *  On-Line Applications Research Corporation (OAR).
 *
 *
 *  The license and distribution terms for this file may be
 *  The license and distribution terms for this file may be
 *  found in the file LICENSE in this distribution or at
 *  found in the file LICENSE in this distribution or at
 *  http://www.OARcorp.com/rtems/license.html.
 *  http://www.OARcorp.com/rtems/license.html.
 *
 *
 *  $Id: screen13.c,v 1.2 2001-09-27 12:02:31 chris Exp $
 *  $Id: screen13.c,v 1.2 2001-09-27 12:02:31 chris Exp $
 */
 */
 
 
#include "system.h"
#include "system.h"
 
 
void Screen13()
void Screen13()
{
{
  rtems_time_of_day time;
  rtems_time_of_day time;
  rtems_status_code status;
  rtems_status_code status;
 
 
  status = rtems_io_close( 0xffff, 0x0000, NULL);
  status = rtems_io_close( 0xffff, 0x0000, NULL);
  fatal_directive_status(
  fatal_directive_status(
    status,
    status,
    RTEMS_INVALID_NUMBER,
    RTEMS_INVALID_NUMBER,
    "rtems_io_close with bad major number"
    "rtems_io_close with bad major number"
  );
  );
  puts( "TA1 - rtems_io_close - RTEMS_INVALID_NUMBER" );
  puts( "TA1 - rtems_io_close - RTEMS_INVALID_NUMBER" );
  status = rtems_io_control( 0xffff, 0x00000, NULL);
  status = rtems_io_control( 0xffff, 0x00000, NULL);
  fatal_directive_status(
  fatal_directive_status(
    status,
    status,
    RTEMS_INVALID_NUMBER,
    RTEMS_INVALID_NUMBER,
    "rtems_io_close with bad major number"
    "rtems_io_close with bad major number"
  );
  );
  puts( "TA1 - rtems_io_control - RTEMS_INVALID_NUMBER" );
  puts( "TA1 - rtems_io_control - RTEMS_INVALID_NUMBER" );
  status = rtems_io_initialize( 0xffff, 0x00000, NULL);
  status = rtems_io_initialize( 0xffff, 0x00000, NULL);
  fatal_directive_status(
  fatal_directive_status(
    status,
    status,
    RTEMS_INVALID_NUMBER,
    RTEMS_INVALID_NUMBER,
    "rtems_io_initialize with bad major number"
    "rtems_io_initialize with bad major number"
  );
  );
  puts( "TA1 - rtems_io_initialize - RTEMS_INVALID_NUMBER" );
  puts( "TA1 - rtems_io_initialize - RTEMS_INVALID_NUMBER" );
  status = rtems_io_open( 0xffff, 0x00000, NULL);
  status = rtems_io_open( 0xffff, 0x00000, NULL);
  fatal_directive_status(
  fatal_directive_status(
    status,
    status,
    RTEMS_INVALID_NUMBER,
    RTEMS_INVALID_NUMBER,
    "rtems_io_open with bad major number"
    "rtems_io_open with bad major number"
  );
  );
  puts( "TA1 - rtems_io_open - RTEMS_INVALID_NUMBER" );
  puts( "TA1 - rtems_io_open - RTEMS_INVALID_NUMBER" );
  status = rtems_io_read( 0xffff, 0x00000, NULL);
  status = rtems_io_read( 0xffff, 0x00000, NULL);
  fatal_directive_status(
  fatal_directive_status(
    status,
    status,
    RTEMS_INVALID_NUMBER,
    RTEMS_INVALID_NUMBER,
    "rtems_io_read with bad major number"
    "rtems_io_read with bad major number"
  );
  );
  puts( "TA1 - rtems_io_read - RTEMS_INVALID_NUMBER" );
  puts( "TA1 - rtems_io_read - RTEMS_INVALID_NUMBER" );
  status = rtems_io_write( 0xffff, 0x0ffff, NULL);
  status = rtems_io_write( 0xffff, 0x0ffff, NULL);
  fatal_directive_status(
  fatal_directive_status(
    status,
    status,
    RTEMS_INVALID_NUMBER,
    RTEMS_INVALID_NUMBER,
    "rtems_io_write with bad major number"
    "rtems_io_write with bad major number"
  );
  );
  puts( "TA1 - rtems_io_write - RTEMS_INVALID_NUMBER" );
  puts( "TA1 - rtems_io_write - RTEMS_INVALID_NUMBER" );
 
 
  build_time( &time, 12, 31, 2000, 23, 59, 59, 0 );
  build_time( &time, 12, 31, 2000, 23, 59, 59, 0 );
  status = rtems_clock_set( &time );
  status = rtems_clock_set( &time );
  directive_failed( status, "rtems_clock_set" );
  directive_failed( status, "rtems_clock_set" );
  print_time( "TA1 - rtems_clock_set - ", &time, " - RTEMS_SUCCESSFUL\n" );
  print_time( "TA1 - rtems_clock_set - ", &time, " - RTEMS_SUCCESSFUL\n" );
  status = rtems_task_wake_after( 1 * TICKS_PER_SECOND );
  status = rtems_task_wake_after( 1 * TICKS_PER_SECOND );
  status = rtems_clock_get( RTEMS_CLOCK_GET_TOD, &time );
  status = rtems_clock_get( RTEMS_CLOCK_GET_TOD, &time );
  directive_failed( status, "rtems_clock_set" );
  directive_failed( status, "rtems_clock_set" );
  print_time( "TA1 - rtems_clock_get - ", &time, " - RTEMS_SUCCESSFUL\n" );
  print_time( "TA1 - rtems_clock_get - ", &time, " - RTEMS_SUCCESSFUL\n" );
 
 
  build_time( &time, 12, 31, 1999, 23, 59, 59, 0 );
  build_time( &time, 12, 31, 1999, 23, 59, 59, 0 );
  status = rtems_clock_set( &time );
  status = rtems_clock_set( &time );
  directive_failed( status, "rtems_clock_set" );
  directive_failed( status, "rtems_clock_set" );
  print_time( "TA1 - rtems_clock_set - ", &time, " - RTEMS_SUCCESSFUL\n" );
  print_time( "TA1 - rtems_clock_set - ", &time, " - RTEMS_SUCCESSFUL\n" );
  status = rtems_task_wake_after( 1 * TICKS_PER_SECOND );
  status = rtems_task_wake_after( 1 * TICKS_PER_SECOND );
  status = rtems_clock_get( RTEMS_CLOCK_GET_TOD, &time );
  status = rtems_clock_get( RTEMS_CLOCK_GET_TOD, &time );
  directive_failed( status, "rtems_clock_set" );
  directive_failed( status, "rtems_clock_set" );
  print_time( "TA1 - rtems_clock_get - ", &time, " - RTEMS_SUCCESSFUL\n" );
  print_time( "TA1 - rtems_clock_get - ", &time, " - RTEMS_SUCCESSFUL\n" );
 
 
  build_time( &time, 12, 31, 2100, 23, 59, 59, 0 );
  build_time( &time, 12, 31, 2100, 23, 59, 59, 0 );
  status = rtems_clock_set( &time );
  status = rtems_clock_set( &time );
  directive_failed( status, "rtems_clock_set" );
  directive_failed( status, "rtems_clock_set" );
  print_time( "TA1 - rtems_clock_set - ", &time, " - RTEMS_SUCCESSFUL\n" );
  print_time( "TA1 - rtems_clock_set - ", &time, " - RTEMS_SUCCESSFUL\n" );
  status = rtems_task_wake_after( 1 * TICKS_PER_SECOND );
  status = rtems_task_wake_after( 1 * TICKS_PER_SECOND );
  status = rtems_clock_get( RTEMS_CLOCK_GET_TOD, &time );
  status = rtems_clock_get( RTEMS_CLOCK_GET_TOD, &time );
  directive_failed( status, "rtems_clock_set" );
  directive_failed( status, "rtems_clock_set" );
  print_time( "TA1 - rtems_clock_get - ", &time, " - RTEMS_SUCCESSFUL\n" );
  print_time( "TA1 - rtems_clock_get - ", &time, " - RTEMS_SUCCESSFUL\n" );
 
 
  build_time( &time, 12, 31, 2099, 23, 59, 59, 0 );
  build_time( &time, 12, 31, 2099, 23, 59, 59, 0 );
  status = rtems_clock_set( &time );
  status = rtems_clock_set( &time );
  directive_failed( status, "rtems_clock_set" );
  directive_failed( status, "rtems_clock_set" );
  print_time( "TA1 - rtems_clock_set - ", &time, " - RTEMS_SUCCESSFUL\n" );
  print_time( "TA1 - rtems_clock_set - ", &time, " - RTEMS_SUCCESSFUL\n" );
  status = rtems_task_wake_after( 1 * TICKS_PER_SECOND );
  status = rtems_task_wake_after( 1 * TICKS_PER_SECOND );
  status = rtems_clock_get( RTEMS_CLOCK_GET_TOD, &time );
  status = rtems_clock_get( RTEMS_CLOCK_GET_TOD, &time );
  directive_failed( status, "rtems_clock_set" );
  directive_failed( status, "rtems_clock_set" );
  print_time( "TA1 - rtems_clock_get - ", &time, " - RTEMS_SUCCESSFUL\n" );
  print_time( "TA1 - rtems_clock_get - ", &time, " - RTEMS_SUCCESSFUL\n" );
 
 
  build_time( &time, 12, 31, 1991, 23, 59, 59, 0 );
  build_time( &time, 12, 31, 1991, 23, 59, 59, 0 );
  status = rtems_clock_set( &time );
  status = rtems_clock_set( &time );
  directive_failed( status, "rtems_clock_set" );
  directive_failed( status, "rtems_clock_set" );
  print_time( "TA1 - rtems_clock_set - ", &time, " - RTEMS_SUCCESSFUL\n" );
  print_time( "TA1 - rtems_clock_set - ", &time, " - RTEMS_SUCCESSFUL\n" );
  status = rtems_task_wake_after( 1 * TICKS_PER_SECOND );
  status = rtems_task_wake_after( 1 * TICKS_PER_SECOND );
  status = rtems_clock_get( RTEMS_CLOCK_GET_TOD, &time );
  status = rtems_clock_get( RTEMS_CLOCK_GET_TOD, &time );
  directive_failed( status, "rtems_clock_set" );
  directive_failed( status, "rtems_clock_set" );
  print_time( "TA1 - rtems_clock_get - ", &time, " - RTEMS_SUCCESSFUL\n" );
  print_time( "TA1 - rtems_clock_get - ", &time, " - RTEMS_SUCCESSFUL\n" );
}
}
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.