making the regression tests working again under linux ( I broke it) bug 136519

this is Not Part of the Build, thanks to bz for providing the fix
This commit is contained in:
bernd.mielke%snafu.de 2002-04-18 17:53:32 +00:00
parent 77950da5b1
commit 2b2856f3ad

View File

@ -50,13 +50,12 @@ else
MOZ_OBJ=$MOZ_TEST_BASE/mozilla/
fi
w1='uname | grep WIN'
w1=`uname | grep WIN`
if [ "$w1" = "" ]; then
MOZ_TEST_VIEWER="${MOZ_OBJ}dist/bin/mozilla-viewer.sh -- -d 500"
else
MOZ_TEST_VIEWER="${MOZ_OBJ}dist/bin/viewer.exe"
if test -f $MOZ_TEST_VIEWER; then
else
if test ! -f $MOZ_TEST_VIEWER; then
MOZ_TEST_VIEWER="${MOZ_OBJ}dist/win32_d.obj/bin/viewer.exe"
fi
fi