source: rtems/testsuites/libtests/dl10/dl-o5.c @ dad6fd43

5
Last change on this file since dad6fd43 was dad6fd43, checked in by Chris Johns <chrisj@…>, on 03/09/19 at 18:04:42

libdl: Add an archive command

  • The archive command lists archives, symbols and any duplicate symbols.
  • Change the RTL shell commands to the rtems_printer to allow the output to be captured.
  • 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
12#include <inttypes.h>
13#include <rtems/test.h>
14
15#define printf(...) rtems_printf(&rtems_test_printer, __VA_ARGS__);
16
17uint64_t dl05_unresolv_1;
18uint16_t dl05_unresolv_2;
19uint32_t dl05_unresolv_3;
20uint8_t  dl05_unresolv_4;
21int64_t  dl05_unresolv_5;
22
23#define DL_NAME       "dlo5"
24#define PAINT_VAR(_v) sizeof(_v), &_v, _v
25
26int rtems_main_o5 (void)
27{
28  printf (DL_NAME ": module: %s\n", dl_localise_file (__FILE__));
29  printf (DL_NAME ":   dl05_unresolv_1: %4zu: %p: %" PRIu64 "\n", PAINT_VAR (dl05_unresolv_1));
30  printf (DL_NAME ":   dl05_unresolv_2: %4zu: %p: %" PRIu16 "\n", PAINT_VAR (dl05_unresolv_2));
31  printf (DL_NAME ":   dl05_unresolv_3: %4zu: %p: %" PRIu32 "\n", PAINT_VAR (dl05_unresolv_3));
32  printf (DL_NAME ":   dl05_unresolv_4: %4zu: %p: %" PRIu8  "\n", PAINT_VAR (dl05_unresolv_4));
33  printf (DL_NAME ":   dl05_unresolv_5: %4zu: %p: %" PRIi64 "\n", PAINT_VAR (dl05_unresolv_5));
34
35  return 0;
36}
Note: See TracBrowser for help on using the repository browser.