Files
third_party_elfutils/tests/msg_tst.c
T
Mark Wielaard de2ed97f33 Update name, license and contributor policy.
* Change name from "Red Hat elfutils" to "elfutils".
* Update license of standalone tools and test from GPLv2 to GPLv3+.
* Change license of libraries from GPLv2+exception to GPLv2/LGPLv3+.
* Add Developer Certificate of Origin based contributor policy.

top-level:

- COPYING: Upgraded from GPLv2 to GPLv3.
- CONTRIBUTING, COPYING-GPLv2, COPYING-LGPLv3: New files.
- NEWS: Added note about new contribution and license policy.
- Makefile.am: Updated to GPLv3, added new files to EXTRA_DIST.
- configure.ac: Update to GPLv3, changed AC_INIT name to 'elfutils'.

backends, lib, libasm, libcpu, libdw, libdwfl, libebl, libelf:

- All files updated to GPLv2/LGPLv3+. Except some very small files
  (<5 lines) which didn't have any headers at all before, the linker
  .maps files and the libcpu/defs files which only contain data and
  libelf/elf.h which comes from glibc and is under LGPLv2+.

config:

- elfutils.spec.in: Add new License: headers and new %doc files.
- Update all license headers to GPLv2/LGPLv3+ for files used by libs.

src, tests:

- All files updated to GPLv3+. Except for the test bz2 data files, the
  linker maps and script files and some very small files (<5 lines)
  that don't have any headers.

Signed-off-by: Richard Fontana <rfontana@redhat.com>
Signed-off-by: Mark Wielaard <mjw@redhat.com>
2012-06-05 23:12:05 +02:00

105 lines
3.8 KiB
C

/* Copyright (C) 2002, 2005, 2006 Red Hat, Inc.
This file is part of elfutils.
Written by Ulrich Drepper <drepper@redhat.com>, 2002.
This file is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
elfutils is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>. */
#include <config.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <libelfP.h>
static struct
{
int id;
const char *expected;
} libelf_msgs[ELF_E_NUM] =
{
{ ELF_E_NOERROR, "no error" },
{ ELF_E_UNKNOWN_ERROR, "unknown error" },
{ ELF_E_UNKNOWN_VERSION, "unknown version" },
{ ELF_E_UNKNOWN_TYPE, "unknown type" },
{ ELF_E_INVALID_HANDLE, "invalid `Elf' handle" },
{ ELF_E_SOURCE_SIZE, "invalid size of source operand" },
{ ELF_E_DEST_SIZE, "invalid size of destination operand" },
{ ELF_E_INVALID_ENCODING, "invalid encoding" },
{ ELF_E_NOMEM, "out of memory" },
{ ELF_E_INVALID_FILE, "invalid file descriptor" },
{ ELF_E_INVALID_OP, "invalid operation" },
{ ELF_E_NO_VERSION, "ELF version not set" },
{ ELF_E_INVALID_CMD, "invalid command" },
{ ELF_E_RANGE, "offset out of range" },
{ ELF_E_ARCHIVE_FMAG, "invalid fmag field in archive header" },
{ ELF_E_INVALID_ARCHIVE, "invalid archive file" },
{ ELF_E_NO_ARCHIVE, "descriptor is not for an archive" },
{ ELF_E_NO_INDEX, "no index available" },
{ ELF_E_READ_ERROR, "cannot read data from file" },
{ ELF_E_WRITE_ERROR, "cannot write data to file" },
{ ELF_E_INVALID_CLASS, "invalid binary class" },
{ ELF_E_INVALID_INDEX, "invalid section index" },
{ ELF_E_INVALID_OPERAND, "invalid operand" },
{ ELF_E_INVALID_SECTION, "invalid section" },
{ ELF_E_INVALID_COMMAND, "invalid command" },
{ ELF_E_WRONG_ORDER_EHDR, "executable header not created first" },
{ ELF_E_FD_DISABLED, "file descriptor disabled" },
{ ELF_E_FD_MISMATCH, "archive/member file descriptor mismatch" },
{ ELF_E_OFFSET_RANGE, "offset out of range" },
{ ELF_E_NOT_NUL_SECTION, "cannot manipulate null section" },
{ ELF_E_DATA_MISMATCH, "data/scn mismatch" },
{ ELF_E_INVALID_SECTION_HEADER, "invalid section header" },
{ ELF_E_INVALID_DATA, "invalid data" },
{ ELF_E_DATA_ENCODING, "unknown data encoding" },
{ ELF_E_SECTION_TOO_SMALL, "section `sh_size' too small for data" },
{ ELF_E_INVALID_ALIGN, "invalid section alignment" },
{ ELF_E_INVALID_SHENTSIZE, "invalid section entry size" },
{ ELF_E_UPDATE_RO, "update() for write on read-only file" },
{ ELF_E_NOFILE, "no such file" },
{ ELF_E_GROUP_NOT_REL,
"only relocatable files can contain section groups" },
{ ELF_E_INVALID_PHDR,
"program header only allowed in executables, shared objects, \
and core files" },
{ ELF_E_NO_PHDR, "file has no program header" },
{ ELF_E_INVALID_OFFSET, "invalid offset" }
};
int
main (void)
{
size_t cnt;
int result = EXIT_SUCCESS;
/* Clear the error state. */
(void) elf_errno ();
/* Check all the messages of libelf. */
for (cnt = 1; cnt < ELF_E_NUM; ++cnt)
{
const char *str = elf_errmsg (libelf_msgs[cnt].id);
if (strcmp (str, libelf_msgs[cnt].expected) != 0)
{
printf ("libelf msg %zu: expected \"%s\", got \"%s\"\n",
cnt, libelf_msgs[cnt].expected, str);
result = EXIT_FAILURE;
}
}
return result;
}