1897 |
15 Apr 09 |
peter |
#! /bin/sh |
1897 |
15 Apr 09 |
peter |
# $Id$ |
1897 |
15 Apr 09 |
peter |
3 |
# |
3114 |
10 Nov 13 |
peter |
# Copyright (C) 2009, 2010, 2011, 2012, 2013 Peter Johansson |
1897 |
15 Apr 09 |
peter |
5 |
# |
1897 |
15 Apr 09 |
peter |
# 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 |
# The yat library is free software; you can redistribute it |
1897 |
15 Apr 09 |
peter |
# and/or modify it under the terms of the GNU General Public License as |
1897 |
15 Apr 09 |
peter |
# published by the Free Software Foundation; either version 3 of the |
1897 |
15 Apr 09 |
peter |
# License, or (at your option) any later version. |
1897 |
15 Apr 09 |
peter |
12 |
# |
1897 |
15 Apr 09 |
peter |
# The yat library is distributed in the hope that it will be useful, |
1897 |
15 Apr 09 |
peter |
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
1897 |
15 Apr 09 |
peter |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
1897 |
15 Apr 09 |
peter |
# General Public License for more details. |
1897 |
15 Apr 09 |
peter |
17 |
# |
1897 |
15 Apr 09 |
peter |
# You should have received a copy of the GNU General Public License |
1897 |
15 Apr 09 |
peter |
# 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 |
# 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 |