Issue 69175 - smoketestoo_native crashes with --disable-binfilter
Summary: smoketestoo_native crashes with --disable-binfilter
Status: CLOSED FIXED
Alias: None
Product: Installation
Classification: Application
Component: code (show other issues)
Version: current
Hardware: All All
: P3 Trivial (vote)
Target Milestone: ---
Assignee: kurt.zenker
QA Contact: issues@installation
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2006-09-01 14:12 UTC by kaib
Modified: 2013-08-07 15:26 UTC (History)
3 users (show)

See Also:
Issue Type: DEFECT
Latest Confirmation in: ---
Developer Difficulty: ---


Attachments

Note You need to log in before you can comment on or make changes to this issue.
Description kaib 2006-09-01 14:12:57 UTC
In case you build with ./configure --disable-binfilter 
smoketestoonative_crashes on the StarOffice 5.0 save/load tests. Here is a 
patch to fix the issue:

Index: ./data/scripts/Global.xba
===================================================================
RCS file: /cvs/installation/smoketestoo_native/data/scripts/Global.xba,v
retrieving revision 1.4
diff -u -r1.4 Global.xba
--- ./data/scripts/Global.xba   25 Jan 2006 13:44:40 -0000      1.4
+++ ./data/scripts/Global.xba   1 Sep 2006 13:08:48 -0000
@@ -514,7 +514,12 @@
        bMakeJavaTest = true
        bMakeDBTest = true
        bMakeSaveOpenXMLTest = true
-       bMakeSaveOpen50Test = true
+       REM Disable StarOffice 5.0 tests in case binfilter has not been 
included
+       if Environ("WITH_BINFILTER") = "NO" then
+               bMakeSaveOpen50Test = false
+       else
+               bMakeSaveOpen50Test = true
+       End If
        bMakeSaveOpen8Test = true
        bMakeCutTest = true
        bMakePasteTest = true
Comment 1 kaib 2006-09-01 14:16:23 UTC
Patch resolves the issue.
Comment 2 kaib 2006-09-01 14:16:45 UTC
Assigned to Kurt
Comment 3 kurt.zenker 2006-09-01 15:33:01 UTC
verified
Comment 4 stx123 2006-09-04 01:16:39 UTC
moving to installation so that I'm allowed to remove component smoketest...
Comment 5 kurt.zenker 2007-01-12 12:36:06 UTC
close