Rename nsgtk test launcher, enabled creation of core files, tee log file. Should make it obvious this script is for testing only.

svn path=/trunk/netsurf/; revision=10308
This commit is contained in:
Rob Kendrick 2010-04-08 13:50:24 +00:00
parent 2b8adb0c8a
commit 3d714aa366

25
test-nsgtk Executable file
View File

@ -0,0 +1,25 @@
#!/bin/sh
# This file is part of NetSurf, http://netsurf-browser.org/
# Licensed under the GNU General Public License,
# http://www.opensource.org/licenses/gpl-license
# Copyright 2007 Rob Kendrick <rjek@netsurf-browser.org>
#
# This launcher script is meant only for running nsgtk from inside the
# build tree, with some debugging enabled. It is not meant for day-to-day
# or packaged use!
if [ -d ~/.netsurf ]; then
LOG=~/.netsurf/log.txt
elif [ -d /tmp ]; then
LOG=/tmp/netsurf-log.txt
else
LOG=netsurf-log.txt
fi
echo $0: using $LOG as logfile
ulimit -c unlimited
NETSURFRES=`dirname $0`/gtk/res/
export NETSURFRES
exec `dirname $0`/nsgtk -v "$@" 2>&1 | tee $LOG