source: rtems/testsuites/libtests/dl08/dl08-o5.c @ 9de8d61

Last change on this file since 9de8d61 was 9de8d61, checked in by Sebastian Huber <sebastian.huber@…>, on 07/17/20 at 11:36:49

libtest: <rtems/test.h> to <rtems/test-info.h>

Rename this header file to later move <t.h> to <rtems/test.h>. The main
feature provided by <rtems/test-info.h> is the output of standard test
information which is consumed by the RTEMS Tester.

Update #3199.

  • Property mode set to 100644
File size: 1.2 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-o5.h"
11#include "dl-o6.h"
12
13#include <inttypes.h>
14#include <rtems/test-info.h>
15
16#define printf(...) rtems_printf(&rtems_test_printer, __VA_ARGS__);
17
18uint64_t dl05_unresolv_1;
19uint16_t dl05_unresolv_2;
20uint32_t dl05_unresolv_3;
21uint8_t  dl05_unresolv_4;
22int64_t  dl05_unresolv_5;
23
24#define DL_NAME       "dlo5"
25#define PAINT_VAR(_v) sizeof(_v), &_v, _v
26
27int rtems_main_o5 (void)
28{
29  printf (DL_NAME ": module: %s\n", dl_localise_file (__FILE__));
30  printf (DL_NAME ":   dl05_unresolv_1: %4zu: %p: %" PRIu64 "\n", PAINT_VAR (dl05_unresolv_1));
31  printf (DL_NAME ":   dl05_unresolv_2: %4zu: %p: %" PRIu16 "\n", PAINT_VAR (dl05_unresolv_2));
32  printf (DL_NAME ":   dl05_unresolv_3: %4zu: %p: %" PRIu32 "\n", PAINT_VAR (dl05_unresolv_3));
33  printf (DL_NAME ":   dl05_unresolv_4: %4zu: %p: %" PRIu8  "\n", PAINT_VAR (dl05_unresolv_4));
34  printf (DL_NAME ":   dl05_unresolv_5: %4zu: %p: %" PRIi64 "\n", PAINT_VAR (dl05_unresolv_5));
35
36  rtems_main_o6 ();
37
38  return 0;
39}
Note: See TracBrowser for help on using the repository browser.