Home | History | Annotate | Download | only in testsuite
      1 #!/bin/sh
      2 
      3 # plugin_test_start_lib.sh -- a test case for the plugin API.
      4 
      5 # Copyright 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016 Free Software
      6 # Foundation, Inc.
      7 # Written by Evgenii Stepanov <eugenis (at] google.com>.
      8 
      9 # This file is part of gold.
     10 
     11 # This program is free software; you can redistribute it and/or modify
     12 # it under the terms of the GNU General Public License as published by
     13 # the Free Software Foundation; either version 3 of the License, or
     14 # (at your option) any later version.
     15 
     16 # This program is distributed in the hope that it will be useful,
     17 # but WITHOUT ANY WARRANTY; without even the implied warranty of
     18 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     19 # GNU General Public License for more details.
     20 
     21 # You should have received a copy of the GNU General Public License
     22 # along with this program; if not, write to the Free Software
     23 # Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
     24 # MA 02110-1301, USA.
     25 
     26 # This file goes with plugin_test_1.c, a simple plug-in library that
     27 # exercises the basic interfaces and prints out version numbers and
     28 # options passed to the plugin.
     29 
     30 check()
     31 {
     32     if ! grep -q "$2" "$1"
     33     then
     34 	echo "Did not find expected output in $1:"
     35 	echo "   $2"
     36 	echo ""
     37 	echo "Actual output below:"
     38 	cat "$1"
     39 	exit 1
     40     fi
     41 }
     42 
     43 check plugin_test_start_lib.err "API version:"
     44 check plugin_test_start_lib.err "gold version:"
     45 check plugin_test_start_lib.err "plugin_start_lib_test.o: claim file hook called"
     46 check plugin_test_start_lib.err "plugin_start_lib_test_2.syms: claim file hook called"
     47 check plugin_test_start_lib.err "plugin_start_lib_test_2.syms: claiming file, adding 1 symbols"
     48 check plugin_test_start_lib.err "all symbols read hook called"
     49 check plugin_test_start_lib.err "plugin_start_lib_test_2.syms: no symbols"
     50 check plugin_test_start_lib.err "cleanup hook called"
     51 
     52 exit 0
     53