예제 #1
0
파일: init.c 프로젝트: AlexShiLucky/rtems
rtems_task Init(
  rtems_task_argument ignored
)
{
  TEST_BEGIN();

  test_untar_from_memory();
  puts( "" );
  test_untar_from_file();

  TEST_END();
  exit( 0 );
}
예제 #2
0
rtems_task Init(
  rtems_task_argument ignored
)
{
  TEST_BEGIN();

  test_untar_from_memory();
  test_untar_from_file();
  test_untar_chunks_from_memory();
  test_untar_unzip_tgz();
  test_untar_unzip_txz();

  TEST_END();
  exit( 0 );
}