test/yat_config_cblas_test.sh

Code
Comments
Other
Rev Date Author Line
1897 15 Apr 09 peter 1 #! /bin/sh
1897 15 Apr 09 peter 2 # $Id$
1897 15 Apr 09 peter 3 #
3114 10 Nov 13 peter 4 # Copyright (C) 2009, 2010, 2011, 2012, 2013 Peter Johansson
1897 15 Apr 09 peter 5 #
1897 15 Apr 09 peter 6 # This file is part of the yat library, http://dev.thep.lu.se/yat
1897 15 Apr 09 peter 7 #
1897 15 Apr 09 peter 8 # The yat library is free software; you can redistribute it
1897 15 Apr 09 peter 9 # and/or modify it under the terms of the GNU General Public License as
1897 15 Apr 09 peter 10 # published by the Free Software Foundation; either version 3 of the
1897 15 Apr 09 peter 11 # License, or (at your option) any later version.
1897 15 Apr 09 peter 12 #
1897 15 Apr 09 peter 13 # The yat library is distributed in the hope that it will be useful,
1897 15 Apr 09 peter 14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
1897 15 Apr 09 peter 15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
1897 15 Apr 09 peter 16 # General Public License for more details.
1897 15 Apr 09 peter 17 #
1897 15 Apr 09 peter 18 # You should have received a copy of the GNU General Public License
1897 15 Apr 09 peter 19 # along with yat. If not, see <http://www.gnu.org/licenses/>.
1897 15 Apr 09 peter 20
1897 15 Apr 09 peter 21
1897 15 Apr 09 peter 22 # test that yat-config honors environment variable YAT_CBLAS_LIB
1897 15 Apr 09 peter 23
1897 15 Apr 09 peter 24 required=
1897 15 Apr 09 peter 25
1897 15 Apr 09 peter 26 set -e
1897 15 Apr 09 peter 27
3036 03 Jun 13 peter 28 . test/init.sh || exit 99
1897 15 Apr 09 peter 29
1897 15 Apr 09 peter 30 export YAT_CBLAS_LIB=BOGUSBOGUS
2235 30 Mar 10 peter 31 ret_str=`$abs_top_builddir/build_support/yat-config --libs`
2520 11 Jul 11 peter 32 echo $ret_str | grep BOGUSBOGUS || exit_fail
2520 11 Jul 11 peter 33 exit_success