1
#!/bin/bash
2
3
for dir in . cpp-raptor cygwin-1.5.25 mingw-5.1.4 python-2.5.2; do
4
echo testing exports.inf in $dir
5
(cd $dir; ./exports.sh2; sort exports.inf > t1; sort exports.inf2 > t2; diff t1 t2)
6
done
7