Sophie

Sophie

distrib > Mandriva > 8.1 > i586 > by-pkgid > 7a758bdd2160a4d147292e91e454880b > files > 45

wv-devel-0.6.5-2mdk.i586.rpm

#!/bin/sh

#the idea here is test all the word docs looking for a crash
#im using this on my 
#
#C.

for filename in *
	do
	echo filename is $filename
    ../mswordview "$filename" -o /tmp/mswv--
	test=$?
	rm -rf /tmp/mswv--*
	echo status is $test
	if [ "$test" != "0" ] ; then
	exit -1
	fi
	done