1da0c48c4Sopenharmony_ci#! /usr/bin/env bash 2da0c48c4Sopenharmony_ci# Test to make sure all EM values in elf.h are recognized 3da0c48c4Sopenharmony_ci# Copyright (C) 2019 Red Hat, Inc. 4da0c48c4Sopenharmony_ci# This file is part of elfutils. 5da0c48c4Sopenharmony_ci# 6da0c48c4Sopenharmony_ci# This file is free software; you can redistribute it and/or modify 7da0c48c4Sopenharmony_ci# it under the terms of the GNU General Public License as published by 8da0c48c4Sopenharmony_ci# the Free Software Foundation; either version 3 of the License, or 9da0c48c4Sopenharmony_ci# (at your option) any later version. 10da0c48c4Sopenharmony_ci# 11da0c48c4Sopenharmony_ci# elfutils is distributed in the hope that it will be useful, but 12da0c48c4Sopenharmony_ci# WITHOUT ANY WARRANTY; without even the implied warranty of 13da0c48c4Sopenharmony_ci# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14da0c48c4Sopenharmony_ci# GNU General Public License for more details. 15da0c48c4Sopenharmony_ci# 16da0c48c4Sopenharmony_ci# You should have received a copy of the GNU General Public License 17da0c48c4Sopenharmony_ci# along with this program. If not, see <http://www.gnu.org/licenses/>. 18da0c48c4Sopenharmony_ci 19da0c48c4Sopenharmony_ci. $srcdir/test-subr.sh 20da0c48c4Sopenharmony_ci 21da0c48c4Sopenharmony_ci# Get all known EM values from elf.h and pass them through the 22da0c48c4Sopenharmony_ci# preprocessor to get the numbers. Call dwelf_elf_e_machine_string on 23da0c48c4Sopenharmony_ci# all of them. 24da0c48c4Sopenharmony_ciEM_VALUES=$(grep ^\#define\ EM_ ${abs_srcdir}/../libelf/elf.h \ 25da0c48c4Sopenharmony_ci | cut -f2 -d\ | cut -f1 | grep -v ^EM_NUM$ | xargs echo) 26da0c48c4Sopenharmony_ci# echo "EM_VALUES: $EM_VALUES" 27da0c48c4Sopenharmony_ciEM_NUMBERS=$((cat ${abs_srcdir}/../libelf/elf.h; echo "$EM_VALUES") \ 28da0c48c4Sopenharmony_ci | gcc -E - | tail -1) 29da0c48c4Sopenharmony_ci# echo "EM_NUMBERS: $EM_NUMBERS" 30da0c48c4Sopenharmony_ci 31da0c48c4Sopenharmony_citestrun ${abs_top_builddir}/tests/dwelf_elf_e_machine_string $EM_NUMBERS 32