]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gold/testsuite/object_unittest.cc
Update year range in copyright notice of binutils files
[thirdparty/binutils-gdb.git] / gold / testsuite / object_unittest.cc
CommitLineData
5a6f7e2d
ILT
1// object_unittest.cc -- test Object, Relobj, etc.
2
a2c58332 3// Copyright (C) 2006-2022 Free Software Foundation, Inc.
6cb15b7f
ILT
4// Written by Ian Lance Taylor <iant@google.com>.
5
6// This file is part of gold.
7
8// This program is free software; you can redistribute it and/or modify
9// it under the terms of the GNU General Public License as published by
10// the Free Software Foundation; either version 3 of the License, or
11// (at your option) any later version.
12
13// This program is distributed in the hope that it will be useful,
14// but WITHOUT ANY WARRANTY; without even the implied warranty of
15// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16// GNU General Public License for more details.
17
18// You should have received a copy of the GNU General Public License
19// along with this program; if not, write to the Free Software
20// Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
21// MA 02110-1301, USA.
22
5a6f7e2d
ILT
23#include "gold.h"
24
25#include "object.h"
4829d394
CC
26#include "options.h"
27#include "parameters.h"
5a6f7e2d
ILT
28
29#include "test.h"
30#include "testfile.h"
31
32namespace gold_testsuite
33{
34
35using namespace gold;
36
37// Test basic Object functionality.
38
6340166c 39template<int size, bool big_endian>
5a6f7e2d 40bool
029ba973 41Sized_object_test(const unsigned char* test_file, unsigned int test_file_size)
5a6f7e2d 42{
029ba973 43 parameters_clear_target();
17a1d0a9
ILT
44 // We need a pretend Task.
45 const Task* task = reinterpret_cast<const Task*>(-1);
46 Input_file input_file(task, "test.o", test_file, test_file_size);
5a6f7e2d 47 Object* object = make_elf_object("test.o", &input_file, 0,
15f8229b 48 test_file, test_file_size, NULL);
5a6f7e2d
ILT
49 CHECK(object->name() == "test.o");
50 CHECK(!object->is_dynamic());
5a6f7e2d 51 CHECK(object->is_locked());
17a1d0a9 52 object->unlock(task);
5a6f7e2d 53 CHECK(!object->is_locked());
17a1d0a9 54 object->lock(task);
5a6f7e2d
ILT
55 CHECK(object->shnum() == 5);
56 CHECK(object->section_name(0).empty());
57 CHECK(object->section_name(1) == ".test");
58 CHECK(object->section_flags(0) == 0);
59 CHECK(object->section_flags(1) == elfcpp::SHF_ALLOC);
17a1d0a9 60 object->unlock(task);
5a6f7e2d
ILT
61 return true;
62}
63
6340166c
ILT
64bool
65Object_test(Test_report*)
66{
4829d394 67 General_options options;
6340166c
ILT
68 int fail = 0;
69
4829d394
CC
70 set_parameters_options(&options);
71
6340166c
ILT
72#ifdef HAVE_TARGET_32_LITTLE
73 if (!Sized_object_test<32, false>(test_file_1_32_little,
029ba973 74 test_file_1_size_32_little))
6340166c 75 ++fail;
029ba973 76 CHECK(&parameters->target() == target_test_pointer_32_little);
6340166c
ILT
77#endif
78
79#ifdef HAVE_TARGET_32_BIG
80 if (!Sized_object_test<32, true>(test_file_1_32_big,
029ba973 81 test_file_1_size_32_big))
6340166c 82 ++fail;
029ba973 83 CHECK(&parameters->target() == target_test_pointer_32_big);
6340166c
ILT
84#endif
85
86#ifdef HAVE_TARGET_64_LITTLE
87 if (!Sized_object_test<64, false>(test_file_1_64_little,
029ba973 88 test_file_1_size_64_little))
6340166c 89 ++fail;
029ba973 90 CHECK(&parameters->target() == target_test_pointer_64_little);
6340166c
ILT
91#endif
92
93#ifdef HAVE_TARGET_64_BIG
94 if (!Sized_object_test<64, true>(test_file_1_64_big,
029ba973 95 test_file_1_size_64_big))
6340166c 96 ++fail;
029ba973 97 CHECK(&parameters->target() == target_test_pointer_64_big);
6340166c
ILT
98#endif
99
100 return fail == 0;
101}
102
5a6f7e2d
ILT
103Register_test object_register("Object", Object_test);
104
105} // End namespace gold_testsuite.