summaryrefslogtreecommitdiff
path: root/editors/openoffice.org-vcltesttool/files
diff options
context:
space:
mode:
authorMaho Nakata <maho@FreeBSD.org>2009-08-14 10:46:53 +0000
committerMaho Nakata <maho@FreeBSD.org>2009-08-14 10:46:53 +0000
commit484d3291cf016700b9cf61ea0d42fff1f2ae90f3 (patch)
tree34fdbefdcf81fede123842e637f10453a47085c0 /editors/openoffice.org-vcltesttool/files
parentFix build by update to 1.70 for Qt-4.5.0. (diff)
Add checker of hid.lst and a minor fix.
cf. http://www.openoffice.org/issues/show_bug.cgi?id=103796
Notes
Notes: svn path=/head/; revision=239514
Diffstat (limited to 'editors/openoffice.org-vcltesttool/files')
-rw-r--r--editors/openoffice.org-vcltesttool/files/ooovcltest.pl9
1 files changed, 8 insertions, 1 deletions
diff --git a/editors/openoffice.org-vcltesttool/files/ooovcltest.pl b/editors/openoffice.org-vcltesttool/files/ooovcltest.pl
index 65c2d248329f..69214590762c 100644
--- a/editors/openoffice.org-vcltesttool/files/ooovcltest.pl
+++ b/editors/openoffice.org-vcltesttool/files/ooovcltest.pl
@@ -31,7 +31,7 @@ $ooo_milestone=~ s/m//;
####
### Customize according your needs
$path_to_testttol = "/usr/local/openoffice.org-vcltesttool/program";
-$path_to_ooo = "/usr/local/openoffice.org-$ooo_tag/openoffice.org3/program"
+$path_to_ooo = "/usr/local/openoffice.org-$ooo_tag/openoffice.org3/program";
#for other environments
#$path_to_testttol = "/opt/openoffice-vcltesttool/testtool.bin";
#$path_to_ooo = "/usr/lib/openoffice/program";
@@ -123,3 +123,10 @@ print TESTTOOLRC "[LRU]\n";
print TESTTOOLRC "MaxLRU=4\n";
close(TESTTOOLRC);
+
+###########
+#checking hid.lst (generated and QUASTe)
+system ("cat $path_to_ooo/../../hid.lst | sort > hid.lst.genrated\n");
+system ("sed 's/\r//' hid.lst | sort > hid.lst.quaste\n");
+system ("diff -u hid.lst.genrated hid.lst.quaste > hid.lst.diff\n");
+system ("cat hid.lst.diff\n");