mirror of
http://mpg123.de/trunk/.git
synced 2025-07-31 13:24:22 +03:00
Sync inline scripts for current module list; prevent win32_wasapi from occuring in configure output unconditionally.
The test script just tries to build all supported modules into a static output each; providing some testing for the more rare configuration. git-svn-id: svn://scm.orgis.org/mpg123/trunk@3423 35dc7657-300d-0410-a2e5-dc2837fedb53
This commit is contained in:
12
scripts/test-static-modules.sh
Normal file
12
scripts/test-static-modules.sh
Normal file
@ -0,0 +1,12 @@
|
||||
#!/bin/bash
|
||||
# test if build of supported modules works when linking in fixed one
|
||||
modlist=$(./configure | perl -ne 'print $1 if /Detected audio support \.*\s*(.*)$/')
|
||||
errsum=0
|
||||
for m in $modlist
|
||||
do
|
||||
echo "==== testing $m ===="
|
||||
make clean
|
||||
# You can provide -j to speed things up.
|
||||
./configure --with-audio=$m --disable-modules && make "$@" || exit 1
|
||||
echo "==== success with $m ===="
|
||||
done
|
Reference in New Issue
Block a user