blob: 8cbdf9677e715bc94296d634487d0db1d982c2d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/bin/sh
TEST="test items widget itemconf"
# execution
#pour Unix stantard
export LD_LIBRARY_PATH=../../../v0.1/lib:$LD_LIBRARY_PATH
#pour MacOS X
export DYLD_LIBRARY_PATH=../../../v0.1/lib:$DYLD_LIBRARY_PATH
if ( make 1>&2 )
then
for test in $TEST
do
./$test
done
fi
|