Stringpool stats. Also make Symbol_table support functions inline.
[deliverable/binutils-gdb.git] / gold / testsuite / object_unittest.cc
CommitLineData
5a6f7e2d
ILT
1// object_unittest.cc -- test Object, Relobj, etc.
2
6cb15b7f
ILT
3// Copyright 2006, 2007 Free Software Foundation, Inc.
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"
26
27#include "test.h"
28#include "testfile.h"
29
30namespace gold_testsuite
31{
32
33using namespace gold;
34
35// Test basic Object functionality.
36
6340166c 37template<int size, bool big_endian>
5a6f7e2d 38bool
6340166c
ILT
39Sized_object_test(const unsigned char* test_file, unsigned int test_file_size,
40 Target* target_test_pointer)
5a6f7e2d 41{
6340166c 42 Input_file input_file("test.o", test_file, test_file_size);
5a6f7e2d 43 Object* object = make_elf_object("test.o", &input_file, 0,
6340166c 44 test_file, test_file_size);
5a6f7e2d
ILT
45 CHECK(object->name() == "test.o");
46 CHECK(!object->is_dynamic());
47 CHECK(object->target() == target_test_pointer);
48 CHECK(object->is_locked());
49 object->unlock();
50 CHECK(!object->is_locked());
51 object->lock();
52 CHECK(object->shnum() == 5);
53 CHECK(object->section_name(0).empty());
54 CHECK(object->section_name(1) == ".test");
55 CHECK(object->section_flags(0) == 0);
56 CHECK(object->section_flags(1) == elfcpp::SHF_ALLOC);
57 object->unlock();
58 return true;
59}
60
6340166c
ILT
61bool
62Object_test(Test_report*)
63{
64 int fail = 0;
65
66#ifdef HAVE_TARGET_32_LITTLE
67 if (!Sized_object_test<32, false>(test_file_1_32_little,
68 test_file_1_size_32_little,
69 target_test_pointer_32_little))
70 ++fail;
71#endif
72
73#ifdef HAVE_TARGET_32_BIG
74 if (!Sized_object_test<32, true>(test_file_1_32_big,
75 test_file_1_size_32_big,
76 target_test_pointer_32_big))
77 ++fail;
78#endif
79
80#ifdef HAVE_TARGET_64_LITTLE
81 if (!Sized_object_test<64, false>(test_file_1_64_little,
82 test_file_1_size_64_little,
83 target_test_pointer_64_little))
84 ++fail;
85#endif
86
87#ifdef HAVE_TARGET_64_BIG
88 if (!Sized_object_test<64, true>(test_file_1_64_big,
89 test_file_1_size_64_big,
90 target_test_pointer_64_big))
91 ++fail;
92#endif
93
94 return fail == 0;
95}
96
5a6f7e2d
ILT
97Register_test object_register("Object", Object_test);
98
99} // End namespace gold_testsuite.
This page took 0.087851 seconds and 4 git commands to generate.