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
a5847cff
Kaydet (Commit)
a5847cff
authored
May 09, 2015
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
coverity#1297235 Uncaught exception
Change-Id: I6b135f6d47352c1fbb729788848913402b7bb742
üst
a1a3e047
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
2 deletions
+11
-2
cppunittester.cxx
sal/cppunittester/cppunittester.cxx
+11
-2
No files found.
sal/cppunittester/cppunittester.cxx
Dosyayı görüntüle @
a5847cff
...
...
@@ -294,7 +294,11 @@ public:
}
SAL_IMPLEMENT_MAIN
()
{
SAL_IMPLEMENT_MAIN
()
{
bool
ok
=
false
;
try
{
#ifdef WNT
//Disable Dr-Watson in order to crash simply without popup dialogs under
//windows
...
...
@@ -372,7 +376,12 @@ SAL_IMPLEMENT_MAIN() {
}
ProtectedFixtureFunctor
tests
(
testlib
,
args
,
protectors
,
result
);
bool
ok
=
tests
.
run
();
ok
=
tests
.
run
();
}
catch
(
const
std
::
exception
&
e
)
{
SAL_WARN
(
"vcl.app"
,
"Fatal exception: "
<<
e
.
what
());
}
return
ok
?
EXIT_SUCCESS
:
EXIT_FAILURE
;
}
...
...
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