Changeset 3100
- Timestamp:
- Nov 1, 2013, 9:51:28 AM (9 years ago)
- Location:
- trunk/test
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/defs.sh.in
r3051 r3100 84 84 test @have_libbam@ = "yes" || exit_skip no libbam 85 85 ;; 86 libmy-shared) 87 test -r test/lib/libmy-shared.la || exit_fatal "no 'libmy-shared.la'" 88 test -s test/lib/libmy-shared.la || exit_skip no shared lib 89 ;; 90 libmy-static) 91 test -r test/lib/libmy-static.a || exit_fatal "no 'libmy-static.a'" 92 test -s test/lib/libmy-static.a || exit_skip no static lib 93 ;; 86 94 libtool) 87 95 # GNU libtool comes as glibtool on Mac OS -
trunk/test/yat_lt_link_la_ifelse_test.sh
r3069 r3100 19 19 # along with yat. If not, see <http://www.gnu.org/licenses/>. 20 20 21 required="autoconf automake libtool "21 required="autoconf automake libtool libmy-static libmy-shared" 22 22 set -e 23 23 . ./test/init.sh || exit 99 … … 66 66 67 67 bootstrap 68 ./configure || exit_fail 68 if ./configure; then 69 echo OK; 70 else 71 tail -n 500 config.log; 72 exit_fail configure failed; 73 fi 74 69 75 exit_success
Note: See TracChangeset
for help on using the changeset viewer.