summaryrefslogtreecommitdiff
path: root/framework
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2015-01-04 20:43:25 +0000
committerCaolán McNamara <caolanm@redhat.com>2015-01-07 11:41:32 +0000
commit8ab4d2f29fdd2c058db23f6ee7b2200655d4c6f6 (patch)
tree27239b59958edbe97faa9d3d72bc172a0af32d36 /framework
parent0d44e98d6aa2c390fd9bcdd97290f463b136ddb6 (diff)
drop crashrep unused since start of LibreOffice
Change-Id: I3df1216054c133314b2317849744a0a37e9fbc8f Reviewed-on: https://gerrit.libreoffice.org/13733 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'framework')
-rw-r--r--framework/qa/complex/api_internal/CheckAPI.props2
-rw-r--r--framework/qa/complex/framework/recovery/RecoveryTools.java6
2 files changed, 4 insertions, 4 deletions
diff --git a/framework/qa/complex/api_internal/CheckAPI.props b/framework/qa/complex/api_internal/CheckAPI.props
index b25eb9ae0022..58bd9420b4ab 100644
--- a/framework/qa/complex/api_internal/CheckAPI.props
+++ b/framework/qa/complex/api_internal/CheckAPI.props
@@ -1,4 +1,4 @@
ParamList=-OutProducer stats.SimpleFileOutProducer -OutputPath /dev/null
-#AppExecutionCommand=d:\\prj_new\\install\\src680_m17\\program\\soffice --norestore --nocrashreport --accept=socket,host=0,port=8100;urp;
+#AppExecutionCommand=d:\\prj_new\\install\\src680_m17\\program\\soffice --norestore --accept=socket,host=0,port=8100;urp;
# the test job list
job1=sw.SwXTextTable
diff --git a/framework/qa/complex/framework/recovery/RecoveryTools.java b/framework/qa/complex/framework/recovery/RecoveryTools.java
index e918055fbfe9..36f3c018cf4d 100644
--- a/framework/qa/complex/framework/recovery/RecoveryTools.java
+++ b/framework/qa/complex/framework/recovery/RecoveryTools.java
@@ -219,15 +219,15 @@ public class RecoveryTools {
/**
- * The office must be started WITH restore and crashreporter functionality.
- * Therefore the parameter '<CODE>--norestore</CODE>' and '<CODE>--nocrashreport</CODE>'
+ * The office must be started WITH restore functionality.
+ * Therefore the parameter '<CODE>--norestore</CODE>'
* was removed from the <CODE>AppExecutionCommand</CODE> parameter
*/
public void removeParametersFromAppExecutionCommand(){
//remove some params to start office
String office = (String) param.get("AppExecutionCommand");
- String[] params = {"--norestore", "--nocrashreport"};
+ String[] params = {"--norestore"};
for (int i = 0; i < params.length; i++){
int index = office.indexOf(params[i]);