source: rtems/testsuites/libtests/dl10/dl10-o4.c @ 4a05652

5
Last change on this file since 4a05652 was 4a05652, checked in by Sebastian Huber <sebastian.huber@…>, on 11/25/19 at 14:33:24

libtests/dl*: Rename source files

Rename source files to use a %.c -> %.o and %.cc -> %.o pattern. Use
*.cc for C++ source files instead of *.cpp to be in line with other C++
source files.

Update #3818.

  • Property mode set to 100644
File size: 1.3 KB
Line 
1/*
2 * Copyright (c) 2014 Chris Johns <chrisj@rtems.org>.  All rights reserved.
3 *
4 * The license and distribution terms for this file may be
5 * found in the file LICENSE in this distribution or at
6 * http://www.rtems.org/license/LICENSE.
7 */
8
9#include "dl-load.h"
10#include "dl-o4.h"
11#include "dl-o5.h"
12
13#include <rtems/test.h>
14
15#define printf(...) rtems_printf(&rtems_test_printer, __VA_ARGS__);
16
17int         dl04_unresolv_1;
18float       dl04_unresolv_2;
19char        dl04_unresolv_3;
20char*       dl04_unresolv_4;
21const int   dl04_unresolv_5 = 4;
22const char* dl04_unresolv_6 = "dl-O4";
23
24#define DL_NAME       "dlo4"
25#define PAINT_VAR(_v) sizeof(_v), &_v, _v
26
27int rtems_main_o4 (void)
28{
29  printf (DL_NAME ": module: %s\n", dl_localise_file (__FILE__));
30  printf (DL_NAME ":   dl04_unresolv_1: %4zu: %p: %d\n",   PAINT_VAR (dl04_unresolv_1));
31  printf (DL_NAME ":   dl04_unresolv_2: %4zu: %p: %f\n",   PAINT_VAR (dl04_unresolv_2));
32  printf (DL_NAME ":   dl04_unresolv_3: %4zu: %p: %02x\n", PAINT_VAR (dl04_unresolv_3));
33  printf (DL_NAME ":   dl04_unresolv_4: %4zu: %p: %p\n",   PAINT_VAR (dl04_unresolv_4));
34  printf (DL_NAME ":   dl04_unresolv_5: %4zu: %p: %d\n",   PAINT_VAR (dl04_unresolv_5));
35  printf (DL_NAME ":   dl04_unresolv_6: %4zu: %p: %s\n",   PAINT_VAR (dl04_unresolv_6));
36
37  rtems_main_o5 ();
38
39  return 0;
40}
Note: See TracBrowser for help on using the repository browser.