Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
a44a97eb
Kaydet (Commit)
a44a97eb
authored
Eyl 23, 2010
tarafından
Lars Langhans
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
perftest12:#163613# cleanups for O3 usage
üst
1c74de73
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
23 additions
and
7 deletions
+23
-7
EnhancedComplexTestCase.java
qadevOOo/runner/graphical/EnhancedComplexTestCase.java
+16
-5
JPEGEvaluator.java
qadevOOo/runner/graphical/JPEGEvaluator.java
+2
-0
Office.java
qadevOOo/runner/graphical/Office.java
+1
-0
OpenOfficePostscriptCreator.java
qadevOOo/runner/graphical/OpenOfficePostscriptCreator.java
+1
-0
ParameterHelper.java
qadevOOo/runner/graphical/ParameterHelper.java
+2
-1
Runner.java
qadevOOo/runner/org/openoffice/Runner.java
+1
-1
No files found.
qadevOOo/runner/graphical/EnhancedComplexTestCase.java
Dosyayı görüntüle @
a44a97eb
...
@@ -254,8 +254,15 @@ private void callEntry(String _sEntry, ParameterHelper _aParam)
...
@@ -254,8 +254,15 @@ private void callEntry(String _sEntry, ParameterHelper _aParam)
for
(
int
i
=
0
;
i
<
aList
.
size
();
i
++)
for
(
int
i
=
0
;
i
<
aList
.
size
();
i
++)
{
{
String
sEntry
=
aList
.
get
(
i
);
String
sEntry
=
aList
.
get
(
i
);
callEntry
(
sEntry
,
_aParam
);
try
{
callEntry
(
sEntry
,
_aParam
);
}
catch
(
AssureException
e
)
{
// we only need to catch the assure()
// nOkStatus += 2;
}
// we want to know the current status of the run through
// we want to know the current status of the run through
// if the status is greater (more bad) then the current,
// if the status is greater (more bad) then the current,
// we will remember this. Only the very bad status will
// we will remember this. Only the very bad status will
...
@@ -469,9 +476,13 @@ private void callEntry(String _sEntry, ParameterHelper _aParam)
...
@@ -469,9 +476,13 @@ private void callEntry(String _sEntry, ParameterHelper _aParam)
{
{
String
sPSFile
=
aList
.
get
(
i
);
String
sPSFile
=
aList
.
get
(
i
);
// TODO: this information has to come out of the ini files
// Read information out of the ini files
String
sStatusRunThrough
=
""
;
String
sIndexFile2
=
FileHelper
.
appendPath
(
sPath
,
sPSFile
+
".ini"
);
String
sStatusMessage
=
""
;
IniFile
aIniFile2
=
new
IniFile
(
sIndexFile2
);
String
sStatusRunThrough
=
aIniFile2
.
getValue
(
"global"
,
"state"
);
String
sStatusMessage
=
""
;
// aIniFile2.getValue("global", "info");
aIniFile2
.
close
();
String
sHTMLFile
=
sPSFile
+
".html"
;
String
sHTMLFile
=
sPSFile
+
".html"
;
aOutputter
.
indexLine
(
sHTMLFile
,
sPSFile
,
sStatusRunThrough
,
sStatusMessage
);
aOutputter
.
indexLine
(
sHTMLFile
,
sPSFile
,
sStatusRunThrough
,
sStatusMessage
);
...
...
qadevOOo/runner/graphical/JPEGEvaluator.java
Dosyayı görüntüle @
a44a97eb
...
@@ -51,6 +51,8 @@ public class JPEGEvaluator extends EnhancedComplexTestCase
...
@@ -51,6 +51,8 @@ public class JPEGEvaluator extends EnhancedComplexTestCase
GlobalLogWriter
.
set
(
log
);
GlobalLogWriter
.
set
(
log
);
ParameterHelper
aParam
=
new
ParameterHelper
(
param
);
ParameterHelper
aParam
=
new
ParameterHelper
(
param
);
// aParam.getTestParameters().put("current_ok_status", -1);
// run through all documents found in Inputpath
// run through all documents found in Inputpath
foreachResultCreateHTML
(
aParam
);
foreachResultCreateHTML
(
aParam
);
}
}
...
...
qadevOOo/runner/graphical/Office.java
Dosyayı görüntüle @
a44a97eb
...
@@ -48,6 +48,7 @@ public class Office implements IOffice
...
@@ -48,6 +48,7 @@ public class Office implements IOffice
m_sResult
=
_sResult
;
m_sResult
=
_sResult
;
if
(
_aParam
.
getReferenceType
().
toLowerCase
().
equals
(
"ooo"
)
||
if
(
_aParam
.
getReferenceType
().
toLowerCase
().
equals
(
"ooo"
)
||
_aParam
.
getReferenceType
().
toLowerCase
().
equals
(
"o3"
)
||
_aParam
.
getReferenceType
().
toLowerCase
().
equals
(
"ps"
)
||
_aParam
.
getReferenceType
().
toLowerCase
().
equals
(
"ps"
)
||
_aParam
.
getReferenceType
().
toLowerCase
().
equals
(
"pdf"
))
_aParam
.
getReferenceType
().
toLowerCase
().
equals
(
"pdf"
))
{
{
...
...
qadevOOo/runner/graphical/OpenOfficePostscriptCreator.java
Dosyayı görüntüle @
a44a97eb
...
@@ -102,6 +102,7 @@ public class OpenOfficePostscriptCreator implements IOffice
...
@@ -102,6 +102,7 @@ public class OpenOfficePostscriptCreator implements IOffice
{
{
String
sDocumentName
=
FileHelper
.
appendPath
(
m_sOutputURL
,
m_sBasename
);
String
sDocumentName
=
FileHelper
.
appendPath
(
m_sOutputURL
,
m_sBasename
);
if
(
m_aParameterHelper
.
getReferenceType
().
toLowerCase
().
equals
(
"ooo"
)
||
if
(
m_aParameterHelper
.
getReferenceType
().
toLowerCase
().
equals
(
"ooo"
)
||
m_aParameterHelper
.
getReferenceType
().
toLowerCase
().
equals
(
"o3"
)
||
m_aParameterHelper
.
getReferenceType
().
toLowerCase
().
equals
(
"ps"
)
)
m_aParameterHelper
.
getReferenceType
().
toLowerCase
().
equals
(
"ps"
)
)
{
{
String
sPrintURL
=
sDocumentName
+
".ps"
;
String
sPrintURL
=
sDocumentName
+
".ps"
;
...
...
qadevOOo/runner/graphical/ParameterHelper.java
Dosyayı görüntüle @
a44a97eb
...
@@ -267,7 +267,8 @@ public class ParameterHelper
...
@@ -267,7 +267,8 @@ public class ParameterHelper
// check if MultiServiceFactory is given
// check if MultiServiceFactory is given
if
(
getReferenceType
().
toLowerCase
().
equals
(
"pdf"
)
||
if
(
getReferenceType
().
toLowerCase
().
equals
(
"pdf"
)
||
getReferenceType
().
toLowerCase
().
equals
(
"ps"
)
||
getReferenceType
().
toLowerCase
().
equals
(
"ps"
)
||
getReferenceType
().
toLowerCase
().
equals
(
"ooo"
))
getReferenceType
().
toLowerCase
().
equals
(
"ooo"
)
||
getReferenceType
().
toLowerCase
().
equals
(
"o3"
)
)
{
{
if
(
xMSF
==
null
)
if
(
xMSF
==
null
)
{
{
...
...
qadevOOo/runner/org/openoffice/Runner.java
Dosyayı görüntüle @
a44a97eb
...
@@ -184,7 +184,7 @@ public class Runner
...
@@ -184,7 +184,7 @@ public class Runner
public
static
boolean
run
(
String
...
args
)
public
static
boolean
run
(
String
...
args
)
{
{
System
.
out
.
println
(
"OOoRunner Main() version from 201009
13
(yyyymmdd)"
);
System
.
out
.
println
(
"OOoRunner Main() version from 201009
22
(yyyymmdd)"
);
setStartTime
(
getTime
());
setStartTime
(
getTime
());
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment