Add licensing text to every source file.
[deliverable/binutils-gdb.git] / gold / testsuite / object_unittest.cc
1 // object_unittest.cc -- test Object, Relobj, etc.
2
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
23 #include "gold.h"
24
25 #include "object.h"
26
27 #include "test.h"
28 #include "testfile.h"
29
30 namespace gold_testsuite
31 {
32
33 using namespace gold;
34
35 // Test basic Object functionality.
36
37 bool
38 Object_test(Test_report*)
39 {
40 Input_file input_file("test.o", test_file_1, test_file_1_size);
41 Object* object = make_elf_object("test.o", &input_file, 0,
42 test_file_1, test_file_1_size);
43 CHECK(object->name() == "test.o");
44 CHECK(!object->is_dynamic());
45 CHECK(object->target() == target_test_pointer);
46 CHECK(object->is_locked());
47 object->unlock();
48 CHECK(!object->is_locked());
49 object->lock();
50 CHECK(object->shnum() == 5);
51 CHECK(object->section_name(0).empty());
52 CHECK(object->section_name(1) == ".test");
53 CHECK(object->section_flags(0) == 0);
54 CHECK(object->section_flags(1) == elfcpp::SHF_ALLOC);
55 object->unlock();
56 return true;
57 }
58
59 Register_test object_register("Object", Object_test);
60
61 } // End namespace gold_testsuite.
This page took 0.035743 seconds and 5 git commands to generate.