summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKohei Yoshida <kyoshida@novell.com>2010-01-04 15:44:43 -0500
committerKohei Yoshida <kyoshida@novell.com>2010-01-04 15:44:43 -0500
commit380a2c55a010f9574bde1e705762e307970e283d (patch)
tree2364e619dda13d7ecdf318f60e0d074bdfe39dda
parentc6e8003fb8854d2bccf744cae52ecc1400afcf29 (diff)
Some tweak in command output.
-rwxr-xr-xrun-test.sh.in5
1 files changed, 2 insertions, 3 deletions
diff --git a/run-test.sh.in b/run-test.sh.in
index e7ae067..eae31e7 100755
--- a/run-test.sh.in
+++ b/run-test.sh.in
@@ -16,18 +16,15 @@ dump_files()
source @ROOTDIR@/setenv.sh
# First, import and export each xls document.
-echo "First, import and export echo xls document."
export LD_LIBRARY_PATH=@OOO_INSTALL_PATH@/program:@OOO_INSTALL_PATH@/ure/lib
mkdir "$CTRL_XLS_OUT_DIR" 2>/dev/null || /bin/true
cd @OOO_INSTALL_PATH@/ure/lib
@EXECDIR@/run-soffice || exit 1
# Dump the contents of before and after documents.
-echo "Dump the contents of the original and exported documents."
dump_files "$CTRL_XLS_IN_DIR" || exit 1
dump_files "$CTRL_XLS_OUT_DIR" || exit 1
-echo "Now, compare the dumps to see if anything differs before and after."
# Now, compare the dumps to see if anything differs.
mkdir "$LOG_DIFF_DIR" 2>/dev/null || /bin/true
everdifferent="no"
@@ -52,4 +49,6 @@ done
if test "$everdifferent" == "yes"; then
echo "Content of one or more files differ. Check the full diff output(s) in $LOG_DIFF_DIR for more details."
+else
+ echo "All documents have passed the test!"
fi