summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorHavoc Pennington <hp@redhat.com>2002-03-20 23:12:38 +0000
committerHavoc Pennington <hp@src.gnome.org>2002-03-20 23:12:38 +0000
commitc315b182289771fe21736ec553e3d3c0a3adba38 (patch)
tree06493f72ddb871b96439991b13856074f2954602 /tests
parent55ee87fa405861647a336003692af44cca3be9ff (diff)
downloadgconf-c315b182289771fe21736ec553e3d3c0a3adba38.tar.gz
don't call gconf_value_get_int on a bool. WTF.
2002-03-20 Havoc Pennington <hp@redhat.com> * gconf/gconf-internals.c (gconf_value_list_to_primitive_list_destructive): don't call gconf_value_get_int on a bool. WTF. * gconf/gconfd.c (main): enable the signal handler for USR1 * backends/xml-dir.c (dir_load_doc): do our own file reading, only use libxml to parse, so we can return an error on I/O problems (as opposed to the current behavior, nuking the file contents, which only makes sense for corrupt files)
Diffstat (limited to 'tests')
-rwxr-xr-xtests/runtests.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/runtests.sh b/tests/runtests.sh
index b02b3485..2ae9df5e 100755
--- a/tests/runtests.sh
+++ b/tests/runtests.sh
@@ -33,12 +33,12 @@ echo "" >> $LOGFILE
for I in $TESTS
do
- echo -n "Running test program \"$I\", please wait:"
+ echo "Running test program \"$I\", please wait:"
echo "" >> $LOGFILE
- echo "Output of $I:" >> $LOGFILE
LOCALES="C en_US ja_JP ja_JP:en_US:C"
for L in $LOCALES
do
+ echo "Output of LANG=$L $I:" >> $LOGFILE
if LANG=$L ./$I >>$LOGFILE 2>&1; then
echo " passed in $L locale"
else