Home | History | Annotate | Download | only in testsuite
      1 // two_file_test.h -- a two file test case for gold, header file  -*- C++ -*-
      2 
      3 // Copyright (C) 2006-2016 Free Software Foundation, Inc.
      4 // Written by Ian Lance Taylor <iant (at) 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 tests references between files.  This is the shared header
     24 // file.  See two_file_test_1.cc for details.
     25 
     26 extern bool t1();
     27 extern bool t1a();
     28 extern int t1_2();
     29 
     30 extern bool t2();
     31 extern int v2;
     32 
     33 extern bool t3();
     34 extern int v3;
     35 
     36 extern bool t4();
     37 extern char v4[];
     38 
     39 extern bool t5();
     40 extern char v5[];
     41 
     42 extern bool t6();
     43 
     44 extern bool t7();
     45 
     46 extern bool t8();
     47 
     48 extern bool t9();
     49 
     50 extern bool t10();
     51 extern int f10();
     52 
     53 extern bool t11();
     54 extern int f11a();
     55 extern int f11b(int (*)());
     56 
     57 extern bool t12();
     58 extern bool (*f12())();
     59 
     60 extern bool t13();
     61 inline void f13i() { }
     62 extern void (*f13())();
     63 
     64 #define TEST_STRING_CONSTANT "test string constant"
     65 extern const char* f14();
     66 
     67 #define TEST_WIDE_STRING_CONSTANT L"test wide string constant"
     68 extern const wchar_t* f15();
     69 
     70 extern bool t16();
     71 extern bool t16a();
     72 
     73 extern bool t17();
     74 extern const char* t17data[];
     75 #define T17_COUNT 5
     76 
     77 extern bool t18();
     78 extern const char* f18(int);
     79