Changeset 1847


Ignore:
Timestamp:
Mar 4, 2009, 5:40:04 AM (14 years ago)
Author:
Peter
Message:

skip test if libtool is not available

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/test/common_defs.sh.in

    r1846 r1847  
    3535
    3636echo "Running $me"
     37
     38# autotools are required, if not found exit 77 to skipt test
     39
    3740echo "running autoconf --version"
    3841autoconf --version || exit 77
    3942echo "running automake --version"
    4043automake --version || exit 77
     44
     45# GNU libtool comes as glibtool on Mac OS
     46(echo "running libtool --version" && libtool --version) || \
     47(echo "running glibtool --version" && glibtool --version) || exit 77
     48
    4149
    4250# some defs we need in tests
Note: See TracChangeset for help on using the changeset viewer.