PR binutils/12467
[binutils.git] / gold / testsuite / many_sections_test.cc
blobe4b74c3484fa0fc4c7bc0b299322d4e3f109d93e
1 // many_sections_test.cc -- test lots of sections for gold
3 // Copyright 2008 Free Software Foundation, Inc.
4 // Written by Ian Lance Taylor <iant@google.com>.
6 // This file is part of gold.
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.
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.
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.
23 // This program tests having many sections. It uses a generated .h
24 // files to define 70,000 variables, each in a different section. It
25 // uses another generated .h file to verify that they all have the
26 // right value.
28 #include <cassert>
30 #include "many_sections_define.h"
32 // This tests a section group.
33 template<typename T>
34 class C
36 public:
37 static T val() { return C::val_; }
38 private:
39 static T val_;
42 template<typename T>
43 T C<T>::val_;
45 int
46 main(int, char**)
48 #include "many_sections_check.h"
49 assert(C<int>::val() == 0);
50 return 0;