1 // many_sections_test.cc -- test lots of sections for gold
2 
3 // Copyright (C) 2008-2014 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 // 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.
27 
28 #include <cassert>
29 
30 #include "many_sections_define.h"
31 
32 // This tests a section group.
33 template<typename T>
34 class C
35 {
36  public:
val()37   static T val() { return C::val_; }
38  private:
39   static T val_;
40 };
41 
42 template<typename T>
43 T C<T>::val_;
44 
45 int
main(int,char **)46 main(int, char**)
47 {
48 #include "many_sections_check.h"
49   assert(C<int>::val() == 0);
50   return 0;
51 }
52