source: rtems/testsuites/psxtests/psxcleanup02/init.c @ 9a4eca5

5
Last change on this file since 9a4eca5 was 2b137ed, checked in by Sebastian Huber <sebastian.huber@…>, on 12/15/15 at 05:36:52

psxtests/psxcleanup02: New test

  • Property mode set to 100644
File size: 1010 bytes
Line 
1/*
2 * Copyright (c) 2015 embedded brains GmbH.  All rights reserved.
3 *
4 *  embedded brains GmbH
5 *  Dornierstr. 4
6 *  82178 Puchheim
7 *  Germany
8 *  <rtems@embedded-brains.de>
9 *
10 * The license and distribution terms for this file may be
11 * found in the file LICENSE in this distribution or at
12 * http://www.rtems.com/license/LICENSE.
13 */
14
15#ifdef HAVE_CONFIG_H
16  #include "config.h"
17#endif
18
19#include "tmacros.h"
20
21int main(int argc, char **argv);
22
23const char rtems_test_name[] = "PSXCLEANUP 2";
24
25static void *POSIX_Init(void *arg)
26{
27  TEST_BEGIN();
28
29  main(0, NULL);
30
31  TEST_END();
32  rtems_test_exit(0);
33}
34
35#define CONFIGURE_APPLICATION_DOES_NOT_NEED_CLOCK_DRIVER
36#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
37
38#define CONFIGURE_MAXIMUM_POSIX_THREADS 2
39#define CONFIGURE_MAXIMUM_POSIX_KEYS 1
40#define CONFIGURE_MAXIMUM_POSIX_KEY_VALUE_PAIRS 1
41
42#define CONFIGURE_POSIX_INIT_THREAD_TABLE
43
44#define CONFIGURE_INITIAL_EXTENSIONS RTEMS_TEST_INITIAL_EXTENSION
45
46#define CONFIGURE_INIT
47
48#include <rtems/confdefs.h>
Note: See TracBrowser for help on using the repository browser.