source: rtems/testsuites/libtests/dl07/dl07-o5.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: 2.1 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-o1.h"
11#include "dl-o5.h"
12
13#include <inttypes.h>
14#include <rtems/test.h>
15
16#define printf(...) rtems_printf(&rtems_test_printer, __VA_ARGS__);
17
18
19uint64_t dl05_unresolv_1;
20uint16_t dl05_unresolv_2;
21uint32_t dl05_unresolv_3;
22uint8_t  dl05_unresolv_4;
23int64_t  dl05_unresolv_5;
24
25/*
26 * Yes a decl in the source. This is a modules main and I could not find which
27 * header main is defined in.
28 */
29int rtems_main_o5 (int argc, const char* argv[]);
30
31#define DL_NAME       "dlo5"
32#define PAINT_VAR(_v) sizeof(_v), &_v, _v
33
34int rtems_main_o5 (int argc, const char* argv[])
35{
36  printf (DL_NAME ": module: %s\n", dl_localise_file (__FILE__));
37  printf (DL_NAME ":         dl01_bss1: %4zu: %p: %d\n",          PAINT_VAR (dl01_bss1));
38  printf (DL_NAME ":         dl01_bss2: %4zu: %p: %f\n",          PAINT_VAR (dl01_bss2[0]));
39  printf (DL_NAME ":         dl01_bss3: %4zu: %p: %02x\n",        PAINT_VAR (dl01_bss3[0]));
40  printf (DL_NAME ":        dl01_data1: %4zu: %p: %d\n",          PAINT_VAR (dl01_data1));
41  /* no  %f in the rtems test printer */
42  printf (DL_NAME ":        dl01_data2: %4zu: %p: %f\n",          PAINT_VAR (dl01_data2));
43  printf (DL_NAME ":       dl01_const1: %4zu: %p: %d\n",          PAINT_VAR (dl01_const1));
44  printf (DL_NAME ":       dl01_const2: %4zu: %p: %f\n",          PAINT_VAR (dl01_const2));
45  printf (DL_NAME ":        dl01_func1: %4zu: %p\n",              sizeof(dl01_func1), &dl01_func1);
46  printf (DL_NAME ":   dl05_unresolv_1: %4zu: %p: %" PRIu64 "\n", PAINT_VAR (dl05_unresolv_1));
47  printf (DL_NAME ":   dl05_unresolv_2: %4zu: %p: %" PRIu16 "\n", PAINT_VAR (dl05_unresolv_2));
48  printf (DL_NAME ":   dl05_unresolv_3: %4zu: %p: %" PRIu32 "\n", PAINT_VAR (dl05_unresolv_3));
49  printf (DL_NAME ":   dl05_unresolv_4: %4zu: %p: %" PRIu8  "\n", PAINT_VAR (dl05_unresolv_4));
50  printf (DL_NAME ":   dl05_unresolv_5: %4zu: %p: %" PRIi64 "\n", PAINT_VAR (dl05_unresolv_5));
51  return 0;
52}
Note: See TracBrowser for help on using the repository browser.