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
91609fe9
Kaydet (Commit)
91609fe9
authored
Ara 17, 2011
tarafından
Matúš Kukan
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
sal: add more unit tests
üst
cf77e8a0
Hide whitespace changes
Inline
Side-by-side
Showing
31 changed files
with
705 additions
and
945 deletions
+705
-945
CppunitTest_sal_bytesequence.mk
sal/CppunitTest_sal_bytesequence.mk
+39
-0
CppunitTest_sal_osl_condition.mk
sal/CppunitTest_sal_osl_condition.mk
+39
-0
CppunitTest_sal_osl_file.mk
sal/CppunitTest_sal_osl_file.mk
+64
-0
CppunitTest_sal_osl_getsystempathfromfileurl.mk
sal/CppunitTest_sal_osl_getsystempathfromfileurl.mk
+39
-0
CppunitTest_sal_osl_module.mk
sal/CppunitTest_sal_osl_module.mk
+52
-0
CppunitTest_sal_osl_process.mk
sal/CppunitTest_sal_osl_process.mk
+52
-0
CppunitTest_sal_osl_security.mk
sal/CppunitTest_sal_osl_security.mk
+39
-0
CppunitTest_sal_rtl_alloc.mk
sal/CppunitTest_sal_rtl_alloc.mk
+39
-0
CppunitTest_sal_rtl_cipher.mk
sal/CppunitTest_sal_rtl_cipher.mk
+39
-0
CppunitTest_sal_rtl_crc32.mk
sal/CppunitTest_sal_rtl_crc32.mk
+39
-0
CppunitTest_sal_rtl_doublelock.mk
sal/CppunitTest_sal_rtl_doublelock.mk
+39
-0
CppunitTest_sal_rtl_locale.mk
sal/CppunitTest_sal_rtl_locale.mk
+39
-0
CppunitTest_sal_rtl_ostringbuffer.mk
sal/CppunitTest_sal_rtl_ostringbuffer.mk
+40
-0
CppunitTest_sal_rtl_oustringbuffer.mk
sal/CppunitTest_sal_rtl_oustringbuffer.mk
+43
-0
CppunitTest_sal_rtl_strings.mk
sal/CppunitTest_sal_rtl_strings.mk
+42
-0
CppunitTest_sal_types.mk
sal/CppunitTest_sal_types.mk
+39
-0
Module_sal.mk
sal/Module_sal.mk
+22
-1
makefile.mk
sal/qa/ByteSequence/makefile.mk
+0
-54
makefile.mk
sal/qa/osl/condition/makefile.mk
+0
-64
makefile.mk
sal/qa/osl/file/makefile.mk
+0
-86
makefile.mk
sal/qa/osl/getsystempathfromfileurl/makefile.mk
+0
-62
makefile.mk
sal/qa/osl/module/makefile.mk
+0
-84
makefile.mk
sal/qa/osl/process/makefile.mk
+0
-82
makefile.mk
sal/qa/osl/security/makefile.mk
+0
-67
makefile.mk
sal/qa/rtl/alloc/makefile.mk
+0
-64
makefile.mk
sal/qa/rtl/cipher/makefile.mk
+0
-69
makefile.mk
sal/qa/rtl/crc32/makefile.mk
+0
-67
makefile.mk
sal/qa/rtl/doublelock/makefile.mk
+0
-68
makefile.mk
sal/qa/rtl/locale/makefile.mk
+0
-67
makefile.mk
sal/qa/rtl/oustringbuffer/makefile.mk
+0
-59
makefile.mk
sal/qa/sal/makefile.mk
+0
-51
No files found.
sal/CppunitTest_sal_bytesequence.mk
0 → 100644
Dosyayı görüntüle @
91609fe9
# -*- Mode: makefile; tab-width: 4; indent-tabs-mode: t -*-
#
# Version: MPL 1.1 / GPLv3+ / LGPLv3+
#
# The contents of this file are subject to the Mozilla Public License Version
# 1.1 (the "License"); you may not use this file except in compliance with
# the License or as specified alternatively below. You may obtain a copy of
# the License at http://www.mozilla.org/MPL/
#
# Software distributed under the License is distributed on an "AS IS" basis,
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
# for the specific language governing rights and limitations under the
# License.
#
# Major Contributor(s):
# Copyright (C) 2011 Matúš Kukan <matus.kukan@gmail.com> (initial developer)
#
# All Rights Reserved.
#
# For minor contributions see the git repository.
#
# Alternatively, the contents of this file may be used under the terms of
# either the GNU General Public License Version 3 or later (the "GPLv3+"), or
# the GNU Lesser General Public License Version 3 or later (the "LGPLv3+"),
# in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable
# instead of those above.
$(eval
$(call
gb_CppunitTest_CppunitTest,sal_bytesequence))
$(eval
$(call
gb_CppunitTest_add_exception_objects,sal_bytesequence,\
sal/qa/ByteSequence/ByteSequence
\
))
$(eval
$(call
gb_CppunitTest_add_linked_libs,sal_bytesequence,\
sal
\
$(gb_STDLIBS)
\
))
# vim: set noet sw=4 ts=4:
sal/CppunitTest_sal_osl_condition.mk
0 → 100644
Dosyayı görüntüle @
91609fe9
# -*- Mode: makefile; tab-width: 4; indent-tabs-mode: t -*-
#
# Version: MPL 1.1 / GPLv3+ / LGPLv3+
#
# The contents of this file are subject to the Mozilla Public License Version
# 1.1 (the "License"); you may not use this file except in compliance with
# the License or as specified alternatively below. You may obtain a copy of
# the License at http://www.mozilla.org/MPL/
#
# Software distributed under the License is distributed on an "AS IS" basis,
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
# for the specific language governing rights and limitations under the
# License.
#
# Major Contributor(s):
# Copyright (C) 2011 Matúš Kukan <matus.kukan@gmail.com> (initial developer)
#
# All Rights Reserved.
#
# For minor contributions see the git repository.
#
# Alternatively, the contents of this file may be used under the terms of
# either the GNU General Public License Version 3 or later (the "GPLv3+"), or
# the GNU Lesser General Public License Version 3 or later (the "LGPLv3+"),
# in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable
# instead of those above.
$(eval
$(call
gb_CppunitTest_CppunitTest,sal_osl_condition))
$(eval
$(call
gb_CppunitTest_add_exception_objects,sal_osl_condition,\
sal/qa/osl/condition/osl_Condition
\
))
$(eval
$(call
gb_CppunitTest_add_linked_libs,sal_osl_condition,\
sal
\
$(gb_STDLIBS)
\
))
# vim: set noet sw=4 ts=4:
sal/CppunitTest_sal_osl_file.mk
0 → 100644
Dosyayı görüntüle @
91609fe9
# -*- Mode: makefile; tab-width: 4; indent-tabs-mode: t -*-
#
# Version: MPL 1.1 / GPLv3+ / LGPLv3+
#
# The contents of this file are subject to the Mozilla Public License Version
# 1.1 (the "License"); you may not use this file except in compliance with
# the License or as specified alternatively below. You may obtain a copy of
# the License at http://www.mozilla.org/MPL/
#
# Software distributed under the License is distributed on an "AS IS" basis,
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
# for the specific language governing rights and limitations under the
# License.
#
# Major Contributor(s):
# Copyright (C) 2011 Matúš Kukan <matus.kukan@gmail.com> (initial developer)
#
# All Rights Reserved.
#
# For minor contributions see the git repository.
#
# Alternatively, the contents of this file may be used under the terms of
# either the GNU General Public License Version 3 or later (the "GPLv3+"), or
# the GNU Lesser General Public License Version 3 or later (the "LGPLv3+"),
# in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable
# instead of those above.
# sal_osl_file
$(eval
$(call
gb_CppunitTest_CppunitTest,sal_osl_file))
$(eval
$(call
gb_CppunitTest_add_exception_objects,sal_osl_file,\
sal/qa/osl/file/osl_File
\
))
$(eval
$(call
gb_CppunitTest_add_linked_libs,sal_osl_file,\
sal
\
$(gb_STDLIBS)
\
))
# sal_osl_old_test_file
$(eval
$(call
gb_CppunitTest_CppunitTest,sal_osl_old_test_file))
$(eval
$(call
gb_CppunitTest_add_exception_objects,sal_osl_old_test_file,\
sal/qa/osl/file/osl_old_test_file
\
))
$(eval
$(call
gb_CppunitTest_add_linked_libs,sal_osl_old_test_file,\
sal
\
$(gb_STDLIBS)
\
))
# sal_tcwf
$(eval
$(call
gb_CppunitTest_CppunitTest,sal_tcwf))
$(eval
$(call
gb_CppunitTest_add_exception_objects,sal_tcwf,\
sal/qa/osl/file/test_cpy_wrt_file
\
))
$(eval
$(call
gb_CppunitTest_add_linked_libs,sal_tcwf,\
sal
\
$(gb_STDLIBS)
\
))
# vim: set noet sw=4 ts=4:
sal/CppunitTest_sal_osl_getsystempathfromfileurl.mk
0 → 100644
Dosyayı görüntüle @
91609fe9
# -*- Mode: makefile; tab-width: 4; indent-tabs-mode: t -*-
#
# Version: MPL 1.1 / GPLv3+ / LGPLv3+
#
# The contents of this file are subject to the Mozilla Public License Version
# 1.1 (the "License"); you may not use this file except in compliance with
# the License or as specified alternatively below. You may obtain a copy of
# the License at http://www.mozilla.org/MPL/
#
# Software distributed under the License is distributed on an "AS IS" basis,
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
# for the specific language governing rights and limitations under the
# License.
#
# Major Contributor(s):
# Copyright (C) 2011 Matúš Kukan <matus.kukan@gmail.com> (initial developer)
#
# All Rights Reserved.
#
# For minor contributions see the git repository.
#
# Alternatively, the contents of this file may be used under the terms of
# either the GNU General Public License Version 3 or later (the "GPLv3+"), or
# the GNU Lesser General Public License Version 3 or later (the "LGPLv3+"),
# in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable
# instead of those above.
$(eval
$(call
gb_CppunitTest_CppunitTest,sal_osl_getsystempathfromfileurl))
$(eval
$(call
gb_CppunitTest_add_exception_objects,sal_osl_getsystempathfromfileurl,\
sal/qa/osl/getsystempathfromfileurl/test-getsystempathfromfileurl
\
))
$(eval
$(call
gb_CppunitTest_add_linked_libs,sal_osl_getsystempathfromfileurl,\
sal
\
$(gb_STDLIBS)
\
))
# vim: set noet sw=4 ts=4:
sal/CppunitTest_sal_osl_module.mk
0 → 100644
Dosyayı görüntüle @
91609fe9
# -*- Mode: makefile; tab-width: 4; indent-tabs-mode: t -*-
#
# Version: MPL 1.1 / GPLv3+ / LGPLv3+
#
# The contents of this file are subject to the Mozilla Public License Version
# 1.1 (the "License"); you may not use this file except in compliance with
# the License or as specified alternatively below. You may obtain a copy of
# the License at http://www.mozilla.org/MPL/
#
# Software distributed under the License is distributed on an "AS IS" basis,
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
# for the specific language governing rights and limitations under the
# License.
#
# Major Contributor(s):
# Copyright (C) 2011 Matúš Kukan <matus.kukan@gmail.com> (initial developer)
#
# All Rights Reserved.
#
# For minor contributions see the git repository.
#
# Alternatively, the contents of this file may be used under the terms of
# either the GNU General Public License Version 3 or later (the "GPLv3+"), or
# the GNU Lesser General Public License Version 3 or later (the "LGPLv3+"),
# in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable
# instead of those above.
# sal_osl_module
$(eval
$(call
gb_CppunitTest_CppunitTest,sal_osl_module))
$(eval
$(call
gb_CppunitTest_add_exception_objects,sal_osl_module,\
sal/qa/osl/module/osl_Module
\
))
$(eval
$(call
gb_CppunitTest_add_linked_libs,sal_osl_module,\
sal
\
$(gb_STDLIBS)
\
))
# sal_osl_module_dll
$(eval
$(call
gb_CppunitTest_CppunitTest,sal_osl_module_dll))
$(eval
$(call
gb_CppunitTest_add_exception_objects,sal_osl_module_dll,\
sal/qa/osl/module/osl_Module_DLL
\
))
$(eval
$(call
gb_CppunitTest_add_linked_libs,sal_osl_module_dll,\
sal
\
$(gb_STDLIBS)
\
))
# vim: set noet sw=4 ts=4:
sal/CppunitTest_sal_osl_process.mk
0 → 100644
Dosyayı görüntüle @
91609fe9
# -*- Mode: makefile; tab-width: 4; indent-tabs-mode: t -*-
#
# Version: MPL 1.1 / GPLv3+ / LGPLv3+
#
# The contents of this file are subject to the Mozilla Public License Version
# 1.1 (the "License"); you may not use this file except in compliance with
# the License or as specified alternatively below. You may obtain a copy of
# the License at http://www.mozilla.org/MPL/
#
# Software distributed under the License is distributed on an "AS IS" basis,
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
# for the specific language governing rights and limitations under the
# License.
#
# Major Contributor(s):
# Copyright (C) 2011 Matúš Kukan <matus.kukan@gmail.com> (initial developer)
#
# All Rights Reserved.
#
# For minor contributions see the git repository.
#
# Alternatively, the contents of this file may be used under the terms of
# either the GNU General Public License Version 3 or later (the "GPLv3+"), or
# the GNU Lesser General Public License Version 3 or later (the "LGPLv3+"),
# in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable
# instead of those above.
# osl_process
$(eval
$(call
gb_CppunitTest_CppunitTest,sal_osl_process))
$(eval
$(call
gb_CppunitTest_add_exception_objects,sal_osl_process,\
sal/qa/osl/process/osl_process
\
))
$(eval
$(call
gb_CppunitTest_add_linked_libs,sal_osl_process,\
sal
\
$(gb_STDLIBS)
\
))
# osl_Thread
$(eval
$(call
gb_CppunitTest_CppunitTest,sal_osl_thread))
$(eval
$(call
gb_CppunitTest_add_exception_objects,sal_osl_thread,\
sal/qa/osl/process/osl_Thread
\
))
$(eval
$(call
gb_CppunitTest_add_linked_libs,sal_osl_thread,\
sal
\
$(gb_STDLIBS)
\
))
# vim: set noet sw=4 ts=4:
sal/CppunitTest_sal_osl_security.mk
0 → 100644
Dosyayı görüntüle @
91609fe9
# -*- Mode: makefile; tab-width: 4; indent-tabs-mode: t -*-
#
# Version: MPL 1.1 / GPLv3+ / LGPLv3+
#
# The contents of this file are subject to the Mozilla Public License Version
# 1.1 (the "License"); you may not use this file except in compliance with
# the License or as specified alternatively below. You may obtain a copy of
# the License at http://www.mozilla.org/MPL/
#
# Software distributed under the License is distributed on an "AS IS" basis,
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
# for the specific language governing rights and limitations under the
# License.
#
# Major Contributor(s):
# Copyright (C) 2011 Matúš Kukan <matus.kukan@gmail.com> (initial developer)
#
# All Rights Reserved.
#
# For minor contributions see the git repository.
#
# Alternatively, the contents of this file may be used under the terms of
# either the GNU General Public License Version 3 or later (the "GPLv3+"), or
# the GNU Lesser General Public License Version 3 or later (the "LGPLv3+"),
# in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable
# instead of those above.
$(eval
$(call
gb_CppunitTest_CppunitTest,sal_osl_security))
$(eval
$(call
gb_CppunitTest_add_exception_objects,sal_osl_security,\
sal/qa/osl/security/osl_Security
\
))
$(eval
$(call
gb_CppunitTest_add_linked_libs,sal_osl_security,\
sal
\
$(gb_STDLIBS)
\
))
# vim: set noet sw=4 ts=4:
sal/CppunitTest_sal_rtl_alloc.mk
0 → 100644
Dosyayı görüntüle @
91609fe9
# -*- Mode: makefile; tab-width: 4; indent-tabs-mode: t -*-
#
# Version: MPL 1.1 / GPLv3+ / LGPLv3+
#
# The contents of this file are subject to the Mozilla Public License Version
# 1.1 (the "License"); you may not use this file except in compliance with
# the License or as specified alternatively below. You may obtain a copy of
# the License at http://www.mozilla.org/MPL/
#
# Software distributed under the License is distributed on an "AS IS" basis,
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
# for the specific language governing rights and limitations under the
# License.
#
# Major Contributor(s):
# Copyright (C) 2011 Matúš Kukan <matus.kukan@gmail.com> (initial developer)
#
# All Rights Reserved.
#
# For minor contributions see the git repository.
#
# Alternatively, the contents of this file may be used under the terms of
# either the GNU General Public License Version 3 or later (the "GPLv3+"), or
# the GNU Lesser General Public License Version 3 or later (the "LGPLv3+"),
# in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable
# instead of those above.
$(eval
$(call
gb_CppunitTest_CppunitTest,sal_rtl_alloc))
$(eval
$(call
gb_CppunitTest_add_exception_objects,sal_rtl_alloc,\
sal/qa/rtl/alloc/rtl_alloc
\
))
$(eval
$(call
gb_CppunitTest_add_linked_libs,sal_rtl_alloc,\
sal
\
$(gb_STDLIBS)
\
))
# vim: set noet sw=4 ts=4:
sal/CppunitTest_sal_rtl_cipher.mk
0 → 100644
Dosyayı görüntüle @
91609fe9
# -*- Mode: makefile; tab-width: 4; indent-tabs-mode: t -*-
#
# Version: MPL 1.1 / GPLv3+ / LGPLv3+
#
# The contents of this file are subject to the Mozilla Public License Version
# 1.1 (the "License"); you may not use this file except in compliance with
# the License or as specified alternatively below. You may obtain a copy of
# the License at http://www.mozilla.org/MPL/
#
# Software distributed under the License is distributed on an "AS IS" basis,
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
# for the specific language governing rights and limitations under the
# License.
#
# Major Contributor(s):
# Copyright (C) 2011 Matúš Kukan <matus.kukan@gmail.com> (initial developer)
#
# All Rights Reserved.
#
# For minor contributions see the git repository.
#
# Alternatively, the contents of this file may be used under the terms of
# either the GNU General Public License Version 3 or later (the "GPLv3+"), or
# the GNU Lesser General Public License Version 3 or later (the "LGPLv3+"),
# in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable
# instead of those above.
$(eval
$(call
gb_CppunitTest_CppunitTest,sal_rtl_cipher))
$(eval
$(call
gb_CppunitTest_add_exception_objects,sal_rtl_cipher,\
sal/qa/rtl/cipher/rtl_cipher
\
))
$(eval
$(call
gb_CppunitTest_add_linked_libs,sal_rtl_cipher,\
sal
\
$(gb_STDLIBS)
\
))
# vim: set noet sw=4 ts=4:
sal/CppunitTest_sal_rtl_crc32.mk
0 → 100644
Dosyayı görüntüle @
91609fe9
# -*- Mode: makefile; tab-width: 4; indent-tabs-mode: t -*-
#
# Version: MPL 1.1 / GPLv3+ / LGPLv3+
#
# The contents of this file are subject to the Mozilla Public License Version
# 1.1 (the "License"); you may not use this file except in compliance with
# the License or as specified alternatively below. You may obtain a copy of
# the License at http://www.mozilla.org/MPL/
#
# Software distributed under the License is distributed on an "AS IS" basis,
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
# for the specific language governing rights and limitations under the
# License.
#
# Major Contributor(s):
# Copyright (C) 2011 Matúš Kukan <matus.kukan@gmail.com> (initial developer)
#
# All Rights Reserved.
#
# For minor contributions see the git repository.
#
# Alternatively, the contents of this file may be used under the terms of
# either the GNU General Public License Version 3 or later (the "GPLv3+"), or
# the GNU Lesser General Public License Version 3 or later (the "LGPLv3+"),
# in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable
# instead of those above.
$(eval
$(call
gb_CppunitTest_CppunitTest,sal_rtl_crc32))
$(eval
$(call
gb_CppunitTest_add_exception_objects,sal_rtl_crc32,\
sal/qa/rtl/crc32/rtl_crc32
\
))
$(eval
$(call
gb_CppunitTest_add_linked_libs,sal_rtl_crc32,\
sal
\
$(gb_STDLIBS)
\
))
# vim: set noet sw=4 ts=4:
sal/CppunitTest_sal_rtl_doublelock.mk
0 → 100644
Dosyayı görüntüle @
91609fe9
# -*- Mode: makefile; tab-width: 4; indent-tabs-mode: t -*-
#
# Version: MPL 1.1 / GPLv3+ / LGPLv3+
#
# The contents of this file are subject to the Mozilla Public License Version
# 1.1 (the "License"); you may not use this file except in compliance with
# the License or as specified alternatively below. You may obtain a copy of
# the License at http://www.mozilla.org/MPL/
#
# Software distributed under the License is distributed on an "AS IS" basis,
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
# for the specific language governing rights and limitations under the
# License.
#
# Major Contributor(s):
# Copyright (C) 2011 Matúš Kukan <matus.kukan@gmail.com> (initial developer)
#
# All Rights Reserved.
#
# For minor contributions see the git repository.
#
# Alternatively, the contents of this file may be used under the terms of
# either the GNU General Public License Version 3 or later (the "GPLv3+"), or
# the GNU Lesser General Public License Version 3 or later (the "LGPLv3+"),
# in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable
# instead of those above.
$(eval
$(call
gb_CppunitTest_CppunitTest,sal_rtl_doublelock))
$(eval
$(call
gb_CppunitTest_add_exception_objects,sal_rtl_doublelock,\
sal/qa/rtl/doublelock/rtl_doublelocking
\
))
$(eval
$(call
gb_CppunitTest_add_linked_libs,sal_rtl_doublelock,\
sal
\
$(gb_STDLIBS)
\
))
# vim: set noet sw=4 ts=4:
sal/CppunitTest_sal_rtl_locale.mk
0 → 100644
Dosyayı görüntüle @
91609fe9
# -*- Mode: makefile; tab-width: 4; indent-tabs-mode: t -*-
#
# Version: MPL 1.1 / GPLv3+ / LGPLv3+
#
# The contents of this file are subject to the Mozilla Public License Version
# 1.1 (the "License"); you may not use this file except in compliance with
# the License or as specified alternatively below. You may obtain a copy of
# the License at http://www.mozilla.org/MPL/
#
# Software distributed under the License is distributed on an "AS IS" basis,
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
# for the specific language governing rights and limitations under the
# License.
#
# Major Contributor(s):
# Copyright (C) 2011 Matúš Kukan <matus.kukan@gmail.com> (initial developer)
#
# All Rights Reserved.
#
# For minor contributions see the git repository.
#
# Alternatively, the contents of this file may be used under the terms of
# either the GNU General Public License Version 3 or later (the "GPLv3+"), or
# the GNU Lesser General Public License Version 3 or later (the "LGPLv3+"),
# in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable
# instead of those above.
$(eval
$(call
gb_CppunitTest_CppunitTest,sal_rtl_locale))
$(eval
$(call
gb_CppunitTest_add_exception_objects,sal_rtl_locale,\
sal/qa/rtl/locale/rtl_locale
\
))
$(eval
$(call
gb_CppunitTest_add_linked_libs,sal_rtl_locale,\
sal
\
$(gb_STDLIBS)
\
))
# vim: set noet sw=4 ts=4:
sal/CppunitTest_sal_rtl_ostringbuffer.mk
0 → 100644
Dosyayı görüntüle @
91609fe9
# -*- Mode: makefile; tab-width: 4; indent-tabs-mode: t -*-
#
# Version: MPL 1.1 / GPLv3+ / LGPLv3+
#
# The contents of this file are subject to the Mozilla Public License Version
# 1.1 (the "License"); you may not use this file except in compliance with
# the License or as specified alternatively below. You may obtain a copy of
# the License at http://www.mozilla.org/MPL/
#
# Software distributed under the License is distributed on an "AS IS" basis,
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
# for the specific language governing rights and limitations under the
# License.
#
# Major Contributor(s):
# Copyright (C) 2011 Matúš Kukan <matus.kukan@gmail.com> (initial developer)
#
# All Rights Reserved.
#
# For minor contributions see the git repository.
#
# Alternatively, the contents of this file may be used under the terms of
# either the GNU General Public License Version 3 or later (the "GPLv3+"), or
# the GNU Lesser General Public License Version 3 or later (the "LGPLv3+"),
# in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable
# instead of those above.
$(eval
$(call
gb_CppunitTest_CppunitTest,sal_rtl_ostringbuffer))
$(eval
$(call
gb_CppunitTest_add_exception_objects,sal_rtl_ostringbuffer,\
sal/qa/OStringBuffer/rtl_OStringBuffer
\
sal/qa/OStringBuffer/rtl_String_Utils
\
))
$(eval
$(call
gb_CppunitTest_add_linked_libs,sal_rtl_ostringbuffer,\
sal
\
$(gb_STDLIBS)
\
))
# vim: set noet sw=4 ts=4:
sal/CppunitTest_sal_rtl_oustringbuffer.mk
0 → 100644
Dosyayı görüntüle @
91609fe9
# -*- Mode: makefile; tab-width: 4; indent-tabs-mode: t -*-
# Version: MPL 1.1 / GPLv3+ / LGPLv3+
#
# The contents of this file are subject to the Mozilla Public License Version
# 1.1 (the "License"); you may not use this file except in compliance with
# the License or as specified alternatively below. You may obtain a copy of
# the License at http://www.mozilla.org/MPL/
#
# Software distributed under the License is distributed on an "AS IS" basis,
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
# for the specific language governing rights and limitations under the
# License.
#
# The Initial Developer of the Original Code is
# Matúš Kukan <matus.kukan@gmail.com>
# Portions created by the Initial Developer are Copyright (C) 2011 the
# Initial Developer. All Rights Reserved.
#
# Major Contributor(s):
#
# For minor contributions see the git repository.
#
# Alternatively, the contents of this file may be used under the terms of
# either the GNU General Public License Version 3 or later (the "GPLv3+"), or
# the GNU Lesser General Public License Version 3 or later (the "LGPLv3+"),
# in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable
# instead of those above.
$(eval
$(call
gb_CppunitTest_CppunitTest,sal_rtl_oustringbuffer))
$(eval
$(call
gb_CppunitTest_add_exception_objects,sal_rtl_oustringbuffer,\
sal/qa/rtl/oustringbuffer/test_oustringbuffer_appendchar
\
sal/qa/rtl/oustringbuffer/test_oustringbuffer_noadditional
\
sal/qa/rtl/oustringbuffer/test_oustringbuffer_tostring
\
sal/qa/rtl/oustringbuffer/test_oustringbuffer_utf32
\
))
$(eval
$(call
gb_CppunitTest_add_linked_libs,sal_rtl_oustringbuffer,\
sal
\
$(gb_STDLIBS)
\
))
# vim: set noet sw=4 ts=4:
sal/CppunitTest_sal_rtl_strings.mk
0 → 100644
Dosyayı görüntüle @
91609fe9
# -*- Mode: makefile; tab-width: 4; indent-tabs-mode: t -*-
#
# Version: MPL 1.1 / GPLv3+ / LGPLv3+
#
# The contents of this file are subject to the Mozilla Public License Version
# 1.1 (the "License"); you may not use this file except in compliance with
# the License or as specified alternatively below. You may obtain a copy of
# the License at http://www.mozilla.org/MPL/
#
# Software distributed under the License is distributed on an "AS IS" basis,
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
# for the specific language governing rights and limitations under the
# License.
#
# Major Contributor(s):
# Copyright (C) 2011 Matúš Kukan <matus.kukan@gmail.com> (initial developer)
#
# All Rights Reserved.
#
# For minor contributions see the git repository.
#
# Alternatively, the contents of this file may be used under the terms of
# either the GNU General Public License Version 3 or later (the "GPLv3+"), or
# the GNU Lesser General Public License Version 3 or later (the "LGPLv3+"),
# in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable
# instead of those above.
$(eval
$(call
gb_CppunitTest_CppunitTest,sal_rtl_strings))
$(eval
$(call
gb_CppunitTest_add_exception_objects,sal_rtl_strings,\
sal/qa/rtl/strings/test_oustring_compare
\
sal/qa/rtl/strings/test_oustring_convert
\
sal/qa/rtl/strings/test_oustring_endswith
\
sal/qa/rtl/strings/test_oustring_noadditional
\
))
$(eval
$(call
gb_CppunitTest_add_linked_libs,sal_rtl_strings,\
sal
\
$(gb_STDLIBS)
\
))
# vim: set noet sw=4 ts=4:
sal/CppunitTest_sal_types.mk
0 → 100644
Dosyayı görüntüle @
91609fe9
# -*- Mode: makefile; tab-width: 4; indent-tabs-mode: t -*-
#
# Version: MPL 1.1 / GPLv3+ / LGPLv3+
#
# The contents of this file are subject to the Mozilla Public License Version
# 1.1 (the "License"); you may not use this file except in compliance with
# the License or as specified alternatively below. You may obtain a copy of
# the License at http://www.mozilla.org/MPL/
#
# Software distributed under the License is distributed on an "AS IS" basis,
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
# for the specific language governing rights and limitations under the
# License.
#
# Major Contributor(s):
# Copyright (C) 2011 Matúš Kukan <matus.kukan@gmail.com> (initial developer)
#
# All Rights Reserved.
#
# For minor contributions see the git repository.
#
# Alternatively, the contents of this file may be used under the terms of
# either the GNU General Public License Version 3 or later (the "GPLv3+"), or
# the GNU Lesser General Public License Version 3 or later (the "LGPLv3+"),
# in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable
# instead of those above.
$(eval
$(call
gb_CppunitTest_CppunitTest,sal_types))
$(eval
$(call
gb_CppunitTest_add_exception_objects,sal_types,\
sal/qa/sal/test_types
\
))
$(eval
$(call
gb_CppunitTest_add_linked_libs,sal_types,\
sal
\
$(gb_STDLIBS)
\
))
# vim: set noet sw=4 ts=4:
sal/Module_sal.mk
Dosyayı görüntüle @
91609fe9
...
@@ -44,11 +44,32 @@ $(eval $(call gb_Module_add_targets,sal,\
...
@@ -44,11 +44,32 @@ $(eval $(call gb_Module_add_targets,sal,\
))
))
$(eval
$(call
gb_Module_add_check_targets,sal,\
$(eval
$(call
gb_Module_add_check_targets,sal,\
CppunitTest_sal_bytesequence
\
CppunitTest_sal_osl_condition
\
CppunitTest_sal_osl_file
\
CppunitTest_sal_osl_module
\
CppunitTest_sal_osl_mutex
\
CppunitTest_sal_osl_mutex
\
CppunitTest_sal_osl_p
ipe
\
CppunitTest_sal_osl_p
rocess
\
CppunitTest_sal_osl_profile
\
CppunitTest_sal_osl_profile
\
CppunitTest_sal_osl_security
\
CppunitTest_sal_osl_setthreadname
\
CppunitTest_sal_osl_setthreadname
\
CppunitTest_sal_rtl_alloc
\
CppunitTest_sal_rtl_cipher
\
CppunitTest_sal_rtl_crc32
\
CppunitTest_sal_rtl_doublelock
\
CppunitTest_sal_rtl_locale
\
CppunitTest_sal_rtl_math
\
CppunitTest_sal_rtl_math
\
CppunitTest_sal_rtl_ostringbuffer
\
CppunitTest_sal_rtl_oustringbuffer
\
CppunitTest_sal_rtl_strings
\
CppunitTest_sal_types
\
))
# CppunitTest_sal_osl_pipe has circular dependency on unotest
$(eval
$(call
gb_Module_add_subsequentcheck_targets,sal,\
CppunitTest_sal_osl_pipe
\
))
))
# error when building test-getsystempathfromfileurl.cxx \
CppunitTest_sal_osl_getsystempathfromfileurl
\
# vim: set noet sw=4 ts=4:
# vim: set noet sw=4 ts=4:
sal/qa/ByteSequence/makefile.mk
deleted
100644 → 0
Dosyayı görüntüle @
cf77e8a0
#*************************************************************************
#
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# Copyright 2000, 2010 Oracle and/or its affiliates.
#
# OpenOffice.org - a multi-platform office productivity suite
#
# This file is part of OpenOffice.org.
#
# OpenOffice.org is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License version 3
# only, as published by the Free Software Foundation.
#
# OpenOffice.org is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License version 3 for more details
# (a copy is included in the LICENSE file that accompanied this code).
#
# You should have received a copy of the GNU Lesser General Public License
# version 3 along with OpenOffice.org. If not, see
# <http://www.openoffice.org/license.html>
# for a copy of the LGPLv3 License.
#
#***********************************************************************/
PRJ
=
../..
PRJNAME
=
sal
TARGET
=
qa_ByteSequence
ENABLE_EXCEPTIONS
=
TRUE
VISIBILITY_HIDDEN
=
TRUE
.INCLUDE
:
settings.mk
CFLAGSCXX
+=
$(CPPUNIT_CFLAGS)
.IF
"$(OS)"
==
"IOS"
CFLAGSCXX
+=
-DCPPUNIT_PLUGIN_EXPORTED_NAME
=
cppunitTest_
$(TARGET)
.ENDIF
SHL1IMPLIB
=
i
$(SHL1TARGET)
SHL1OBJS
=
$(SLO)
/ByteSequence.obj
SHL1RPATH
=
NONE
SHL1STDLIBS
=
$(CPPUNITLIB)
$(SALLIB)
SHL1TARGET
=
rtl_ByteSequence
SHL1USE_EXPORTS
=
name
DEF1NAME
=
$(SHL1TARGET)
SLOFILES
=
$(SHL1OBJS)
.INCLUDE
:
target.mk
.INCLUDE
:
$(PRJ)$/qa$/cppunit_local.mk
sal/qa/osl/condition/makefile.mk
deleted
100644 → 0
Dosyayı görüntüle @
cf77e8a0
#*************************************************************************
#
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# Copyright 2000, 2010 Oracle and/or its affiliates.
#
# OpenOffice.org - a multi-platform office productivity suite
#
# This file is part of OpenOffice.org.
#
# OpenOffice.org is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License version 3
# only, as published by the Free Software Foundation.
#
# OpenOffice.org is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License version 3 for more details
# (a copy is included in the LICENSE file that accompanied this code).
#
# You should have received a copy of the GNU Lesser General Public License
# version 3 along with OpenOffice.org. If not, see
# <http://www.openoffice.org/license.html>
# for a copy of the LGPLv3 License.
#
#*************************************************************************
PRJ
=
..
$/
..
$/
..
PRJNAME
=
sal
TARGET
=
qa_osl_condition
ENABLE_EXCEPTIONS
=
TRUE
VISIBILITY_HIDDEN
=
TRUE
# --- Settings -----------------------------------------------------
.INCLUDE
:
settings.mk
.IF
"$(OS)"
==
"IOS"
CFLAGSCXX
+=
-DCPPUNIT_PLUGIN_EXPORTED_NAME
=
cppunitTest_
$(TARGET)
.ENDIF
CFLAGS
+=
$(LFS_CFLAGS)
CXXFLAGS
+=
$(LFS_CFLAGS)
SHL1OBJS
=
\
$(SLO)$/
osl_Condition.obj
SHL1TARGET
=
osl_Condition
SHL1STDLIBS
=
$(SALLIB)
$(CPPUNITLIB)
SHL1IMPLIB
=
i
$(SHL1TARGET)
DEF1NAME
=
$(SHL1TARGET)
SHL1USE_EXPORTS
=
name
# ------------------------------------------------------------------
SLOFILES
=
$(SHL1OBJS)
# --- Targets ------------------------------------------------------
.INCLUDE
:
target.mk
.INCLUDE
:
$(PRJ)$/qa$/cppunit_local.mk
sal/qa/osl/file/makefile.mk
deleted
100644 → 0
Dosyayı görüntüle @
cf77e8a0
#*************************************************************************
#
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# Copyright 2000, 2010 Oracle and/or its affiliates.
#
# OpenOffice.org - a multi-platform office productivity suite
#
# This file is part of OpenOffice.org.
#
# OpenOffice.org is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License version 3
# only, as published by the Free Software Foundation.
#
# OpenOffice.org is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License version 3 for more details
# (a copy is included in the LICENSE file that accompanied this code).
#
# You should have received a copy of the GNU Lesser General Public License
# version 3 along with OpenOffice.org. If not, see
# <http://www.openoffice.org/license.html>
# for a copy of the LGPLv3 License.
#
#*************************************************************************
PRJ
=
..
$/
..
$/
..
PRJNAME
=
sal
TARGET
=
qa_osl_file
ENABLE_EXCEPTIONS
=
TRUE
VISIBILITY_HIDDEN
=
TRUE
# --- Settings -----------------------------------------------------
.INCLUDE
:
settings.mk
CFLAGS
+=
$(LFS_CFLAGS)
CXXFLAGS
+=
$(LFS_CFLAGS)
# --- BEGIN --------------------------------------------------------
SHL1OBJS
=
\
$(SLO)$/
osl_File.obj
SHL1TARGET
=
osl_File
SHL1STDLIBS
=
$(SALLIB)
$(CPPUNITLIB)
SHL1IMPLIB
=
i
$(SHL1TARGET)
DEF1NAME
=
$(SHL1TARGET)
SHL1USE_EXPORTS
=
name
#-------------------------------------------------------------------
SHL2OBJS
=
$(SLO)$/
test_cpy_wrt_file.obj
SHL2TARGET
=
tcwf
SHL2STDLIBS
=
$(SALLIB)
$(CPPUNITLIB)
SHL2IMPLIB
=
i
$(SHL2TARGET)
SHL2DEF
=
$(MISC)$/$(SHL2TARGET)
.def
SHL2USE_EXPORTS
=
name
DEF2NAME
=
$(SHL2TARGET)
# END --------------------------------------------------------------
# --- BEGIN --------------------------------------------------------
SHL3OBJS
=
\
$(SLO)$/
osl_old_test_file.obj
SHL3TARGET
=
osl_old_test_file
SHL3STDLIBS
=
$(SALLIB)
$(CPPUNITLIB)
SHL3IMPLIB
=
i
$(SHL3TARGET)
DEF3NAME
=
$(SHL3TARGET)
SHL3USE_EXPORTS
=
name
# END --------------------------------------------------------------
#------------------------------- All object files -------------------------------
# do this here, so we get right dependencies
SLOFILES
=
$(SHL1OBJS)
$(SHL2OBJS)
$(SHL3OBJS)
# --- Targets ------------------------------------------------------
.INCLUDE
:
target.mk
.INCLUDE
:
$(PRJ)$/qa$/cppunit_local.mk
sal/qa/osl/getsystempathfromfileurl/makefile.mk
deleted
100644 → 0
Dosyayı görüntüle @
cf77e8a0
#*************************************************************************
#
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# Copyright 2000, 2011 Oracle and/or its affiliates.
#
# OpenOffice.org - a multi-platform office productivity suite
#
# This file is part of OpenOffice.org.
#
# OpenOffice.org is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License version 3
# only, as published by the Free Software Foundation.
#
# OpenOffice.org is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License version 3 for more details
# (a copy is included in the LICENSE file that accompanied this code).
#
# You should have received a copy of the GNU Lesser General Public License
# version 3 along with OpenOffice.org. If not, see
# <http://www.openoffice.org/license.html>
# for a copy of the LGPLv3 License.
#
#***********************************************************************/
.IF
"$(OOO_SUBSEQUENT_TESTS)"
==
""
nothing .PHONY
:
.ELSE
PRJ
=
../../..
PRJNAME
=
sal
TARGET
=
qa_osl_getsystempathfromfileurl
ENABLE_EXCEPTIONS
=
TRUE
VISIBILITY_HIDDEN
=
TRUE
.INCLUDE
:
settings.mk
.IF
"$(OS)"
==
"IOS"
CFLAGSCXX
+=
-DCPPUNIT_PLUGIN_EXPORTED_NAME
=
cppunitTest_
$(TARGET)
.ENDIF
CFLAGSCXX
+=
$(CPPUNIT_CFLAGS)
DLLPRE
=
SHL1IMPLIB
=
i
$(SHL1TARGET)
SHL1OBJS
=
$(SLO)
/test-getsystempathfromfileurl.obj
SHL1RPATH
=
NONE
SHL1STDLIBS
=
$(CPPUNITLIB)
$(SALLIB)
SHL1TARGET
=
test-getsystempathfromfileurl
SHL1USE_EXPORTS
=
name
DEF1NAME
=
$(SHL1TARGET)
SLOFILES
=
$(SHL1OBJS)
.INCLUDE
:
target.mk
.INCLUDE
:
_cppunit.mk
.END
sal/qa/osl/module/makefile.mk
deleted
100644 → 0
Dosyayı görüntüle @
cf77e8a0
#*************************************************************************
#
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# Copyright 2000, 2010 Oracle and/or its affiliates.
#
# OpenOffice.org - a multi-platform office productivity suite
#
# This file is part of OpenOffice.org.
#
# OpenOffice.org is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License version 3
# only, as published by the Free Software Foundation.
#
# OpenOffice.org is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License version 3 for more details
# (a copy is included in the LICENSE file that accompanied this code).
#
# You should have received a copy of the GNU Lesser General Public License
# version 3 along with OpenOffice.org. If not, see
# <http://www.openoffice.org/license.html>
# for a copy of the LGPLv3 License.
#
#*************************************************************************
PRJ
=
..
$/
..
$/
..
PRJNAME
=
sal
TARGET
=
qa_module
ENABLE_EXCEPTIONS
=
TRUE
VISIBILITY_HIDDEN
=
TRUE
# --- Settings -----------------------------------------------------
.INCLUDE
:
settings.mk
.IF
"$(OS)"
==
"IOS"
CFLAGSCXX
+=
-DCPPUNIT_PLUGIN_EXPORTED_NAME
=
cppunitTest_
$(TARGET)
.ENDIF
CFLAGS
+=
$(LFS_CFLAGS)
CXXFLAGS
+=
$(LFS_CFLAGS)
# BEGIN ----------------------------------------------------------------
# --- test dll ------------------------------------------------------
SHL1TARGET
=
Module_DLL
SHL1OBJS
=
$(SLO)$/
osl_Module_DLL.obj
SHL1STDLIBS
=
$(SALLIB)
$(CPPUNITLIB)
SHL1IMPLIB
=
i
$(SHL1TARGET)
SHL1DEF
=
$(MISC)$/$(SHL1TARGET)
.def
DEF1NAME
=
$(SHL1TARGET)
SHL1USE_EXPORTS
=
name
SHL1CPPUNITTEST
=
FALSE
# --- main l ------------------------------------------------------
SHL2OBJS
=
$(SLO)$/
osl_Module.obj
SHL2TARGET
=
osl_Module
SHL2STDLIBS
=
$(SALLIB)
$(CPPUNITLIB)
.IF
"$(GUI)"
==
"WNT"
SHL2STDLIBS
+=
i
$(SHL2TARGET)
.lib
.ENDIF
.IF
"$(GUI)"
==
"UNX"
APP3STDLIBS
+=
-l
$(SHL2TARGET)
.ENDIF
SHL2DEPN
=
$(SHL1OBJS)
SHL2IMPLIB
=
i
$(SHL2TARGET)
SHL2DEF
=
$(MISC)$/$(SHL2TARGET)
.def
DEF2NAME
=
$(SHL2TARGET)
SHL2USE_EXPORTS
=
name
SLOFILES
=
$(SHL2OBJS)
# --- Targets ------------------------------------------------------
.INCLUDE
:
target.mk
.INCLUDE
:
$(PRJ)$/qa$/cppunit_local.mk
sal/qa/osl/process/makefile.mk
deleted
100644 → 0
Dosyayı görüntüle @
cf77e8a0
#*************************************************************************
#
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# Copyright 2000, 2010 Oracle and/or its affiliates.
#
# OpenOffice.org - a multi-platform office productivity suite
#
# This file is part of OpenOffice.org.
#
# OpenOffice.org is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License version 3
# only, as published by the Free Software Foundation.
#
# OpenOffice.org is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License version 3 for more details
# (a copy is included in the LICENSE file that accompanied this code).
#
# You should have received a copy of the GNU Lesser General Public License
# version 3 along with OpenOffice.org. If not, see
# <http://www.openoffice.org/license.html>
# for a copy of the LGPLv3 License.
#
#*************************************************************************
PRJ
=
..
$/
..
$/
..
PRJNAME
=
sal
TARGET
=
qa_osl_process
ENABLE_EXCEPTIONS
=
TRUE
VISIBILITY_HIDDEN
=
TRUE
# --- Settings -----------------------------------------------------
.INCLUDE
:
settings.mk
CFLAGS
+=
$(LFS_CFLAGS)
CXXFLAGS
+=
$(LFS_CFLAGS)
.IF
"$(COM)"
==
"MSC"
CFLAGS
+=
/Ob1
.ENDIF
SHL1OBJS
=
$(SLO)$/
osl_Thread.obj
SHL1TARGET
=
osl_Thread
SHL1STDLIBS
=
$(SALLIB)
$(CPPUNITLIB)
SHL1IMPLIB
=
i
$(SHL1TARGET)
DEF1NAME
=
$(SHL1TARGET)
SHL1USE_EXPORTS
=
name
SHL2OBJS
=
$(SLO)$/
osl_process.obj
SHL2TARGET
=
osl_process
SHL2STDLIBS
=
$(SALLIB)
$(CPPUNITLIB)
SHL2IMPLIB
=
i
$(SHL2TARGET)
DEF2NAME
=
$(SHL2TARGET)
SHL2USE_EXPORTS
=
name
OBJ3FILES
=
$(OBJ)$/
osl_process_child.obj
APP3TARGET
=
osl_process_child
APP3OBJS
=
$(OBJ3FILES)
APP3STDLIBS
=
$(SALLIB)
SHL2DEPN
=
$(APP3TARGETN)
\
$(BIN)
/batch.sh
\
$(BIN)
/batch.bat
#------------------------------- All object files -------------------------------
SLOFILES
=
$(SHL1OBJS)
$(SHL2OBJS)
# --- Targets ------------------------------------------------------
.INCLUDE
:
target.mk
$(BIN)/batch.sh
:
batch.sh
$(COPY)
$<
$@
$(BIN)/batch.bat
:
batch.bat
$(COPY)
$<
$@
.INCLUDE
:
$(PRJ)$/qa$/cppunit_local.mk
sal/qa/osl/security/makefile.mk
deleted
100755 → 0
Dosyayı görüntüle @
cf77e8a0
#*************************************************************************
#
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# Copyright 2000, 2010 Oracle and/or its affiliates.
#
# OpenOffice.org - a multi-platform office productivity suite
#
# This file is part of OpenOffice.org.
#
# OpenOffice.org is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License version 3
# only, as published by the Free Software Foundation.
#
# OpenOffice.org is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License version 3 for more details
# (a copy is included in the LICENSE file that accompanied this code).
#
# You should have received a copy of the GNU Lesser General Public License
# version 3 along with OpenOffice.org. If not, see
# <http://www.openoffice.org/license.html>
# for a copy of the LGPLv3 License.
#
#*************************************************************************
PRJ
=
..
$/
..
$/
..
PRJNAME
=
sal
TARGET
=
qa_osl_security
ENABLE_EXCEPTIONS
=
TRUE
VISIBILITY_HIDDEN
=
TRUE
# --- Settings -----------------------------------------------------
.INCLUDE
:
settings.mk
.IF
"$(OS)"
==
"IOS"
CFLAGSCXX
+=
-DCPPUNIT_PLUGIN_EXPORTED_NAME
=
cppunitTest_
$(TARGET)
.ENDIF
CFLAGS
+=
$(LFS_CFLAGS)
CXXFLAGS
+=
$(LFS_CFLAGS)
SHL1OBJS
=
\
$(SLO)$/
osl_Security.obj
SHL1TARGET
=
osl_Security
SHL1STDLIBS
=
$(SALLIB)
$(CPPUNITLIB)
.IF
"$(GUI)"
==
"WNT"
SHL1STDLIBS
+=
$(ADVAPI32LIB)
.ENDIF
SHL1IMPLIB
=
i
$(SHL1TARGET)
SHL1DEF
=
$(MISC)$/$(SHL1TARGET)
.def
DEF1NAME
=
$(SHL1TARGET)
SHL1USE_EXPORTS
=
name
SLOFILES
=
$(SHL1OBJS)
# --- Targets ------------------------------------------------------
.INCLUDE
:
target.mk
.INCLUDE
:
$(PRJ)$/qa$/cppunit_local.mk
sal/qa/rtl/alloc/makefile.mk
deleted
100755 → 0
Dosyayı görüntüle @
cf77e8a0
#*************************************************************************
#
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# Copyright 2000, 2010 Oracle and/or its affiliates.
#
# OpenOffice.org - a multi-platform office productivity suite
#
# This file is part of OpenOffice.org.
#
# OpenOffice.org is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License version 3
# only, as published by the Free Software Foundation.
#
# OpenOffice.org is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License version 3 for more details
# (a copy is included in the LICENSE file that accompanied this code).
#
# You should have received a copy of the GNU Lesser General Public License
# version 3 along with OpenOffice.org. If not, see
# <http://www.openoffice.org/license.html>
# for a copy of the LGPLv3 License.
#
#*************************************************************************
PRJ
=
..
$/
..
$/
..
PRJNAME
=
sal
TARGET
=
qa_rtl_alloc
ENABLE_EXCEPTIONS
=
TRUE
VISIBILITY_HIDDEN
=
TRUE
# --- Settings -----------------------------------------------------
.INCLUDE
:
settings.mk
.IF
"$(OS)"
==
"IOS"
CFLAGSCXX
+=
-DCPPUNIT_PLUGIN_EXPORTED_NAME
=
cppunitTest_
$(TARGET)
.ENDIF
CFLAGS
+=
$(LFS_CFLAGS)
CXXFLAGS
+=
$(LFS_CFLAGS)
CFLAGSCXX
+=
$(CPPUNIT_CFLAGS)
SHL1OBJS
=
$(SLO)$/
rtl_alloc.obj
SHL1TARGET
=
rtl_Alloc
SHL1STDLIBS
=
$(SALLIB)
$(CPPUNITLIB)
SHL1IMPLIB
=
i
$(SHL1TARGET)
DEF1NAME
=
$(SHL1TARGET)
SHL1USE_EXPORTS
=
name
#------------------------------- All object files -------------------------------
SLOFILES
=
$(SHL1OBJS)
# --- Targets ------------------------------------------------------
.INCLUDE
:
target.mk
.INCLUDE
:
$(PRJ)$/qa$/cppunit_local.mk
sal/qa/rtl/cipher/makefile.mk
deleted
100644 → 0
Dosyayı görüntüle @
cf77e8a0
#*************************************************************************
#
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# Copyright 2000, 2010 Oracle and/or its affiliates.
#
# OpenOffice.org - a multi-platform office productivity suite
#
# This file is part of OpenOffice.org.
#
# OpenOffice.org is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License version 3
# only, as published by the Free Software Foundation.
#
# OpenOffice.org is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License version 3 for more details
# (a copy is included in the LICENSE file that accompanied this code).
#
# You should have received a copy of the GNU Lesser General Public License
# version 3 along with OpenOffice.org. If not, see
# <http://www.openoffice.org/license.html>
# for a copy of the LGPLv3 License.
#
#*************************************************************************
PRJ
=
..
$/
..
$/
..
INCPRE
+=
$(PRJ)$/
qa
$/
inc
PRJNAME
=
sal
TARGET
=
qa_rtl_cipher
ENABLE_EXCEPTIONS
=
TRUE
VISIBILITY_HIDDEN
=
TRUE
# --- Settings -----------------------------------------------------
.INCLUDE
:
settings.mk
.IF
"$(OS)"
==
"IOS"
CFLAGSCXX
+=
-DCPPUNIT_PLUGIN_EXPORTED_NAME
=
cppunitTest_
$(TARGET)
.ENDIF
CFLAGS
+=
$(LFS_CFLAGS)
CXXFLAGS
+=
$(LFS_CFLAGS)
CFLAGSCXX
+=
$(CPPUNIT_CFLAGS)
SHL1OBJS
=
\
$(SLO)$/
rtl_cipher.obj
SHL1TARGET
=
rtl_cipher
SHL1STDLIBS
=
$(SALLIB)
$(CPPUNITLIB)
SHL1IMPLIB
=
i
$(SHL1TARGET)
# SHL1DEF= $(MISC)$/$(SHL1TARGET).def
DEF1NAME
=
$(SHL1TARGET)
# DEF2EXPORTFILE= export.exp
SHL1USE_EXPORTS
=
name
#------------------------------- All object files -------------------------------
SLOFILES
=
$(SHL1OBJS)
# --- Targets ------------------------------------------------------
.INCLUDE
:
target.mk
.INCLUDE
:
$(PRJ)$/qa$/cppunit_local.mk
sal/qa/rtl/crc32/makefile.mk
deleted
100755 → 0
Dosyayı görüntüle @
cf77e8a0
#*************************************************************************
#
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# Copyright 2000, 2010 Oracle and/or its affiliates.
#
# OpenOffice.org - a multi-platform office productivity suite
#
# This file is part of OpenOffice.org.
#
# OpenOffice.org is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License version 3
# only, as published by the Free Software Foundation.
#
# OpenOffice.org is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License version 3 for more details
# (a copy is included in the LICENSE file that accompanied this code).
#
# You should have received a copy of the GNU Lesser General Public License
# version 3 along with OpenOffice.org. If not, see
# <http://www.openoffice.org/license.html>
# for a copy of the LGPLv3 License.
#
#*************************************************************************
PRJ
=
..
$/
..
$/
..
PRJNAME
=
sal
TARGET
=
qa_rtl_crc32
ENABLE_EXCEPTIONS
=
TRUE
VISIBILITY_HIDDEN
=
TRUE
# --- Settings -----------------------------------------------------
.INCLUDE
:
settings.mk
.IF
"$(OS)"
==
"IOS"
CFLAGSCXX
+=
-DCPPUNIT_PLUGIN_EXPORTED_NAME
=
cppunitTest_
$(TARGET)
.ENDIF
CFLAGS
+=
$(LFS_CFLAGS)
CXXFLAGS
+=
$(LFS_CFLAGS)
CFLAGSCXX
+=
$(CPPUNIT_CFLAGS)
SHL1OBJS
=
\
$(SLO)$/
rtl_crc32.obj
SHL1TARGET
=
rtl_crc32
SHL1STDLIBS
=
$(SALLIB)
$(CPPUNITLIB)
SHL1IMPLIB
=
i
$(SHL1TARGET)
# SHL1DEF= $(MISC)$/$(SHL1TARGET).def
DEF1NAME
=
$(SHL1TARGET)
# DEF1EXPORTFILE= export.exp
SHL1USE_EXPORTS
=
name
#------------------------------- All object files -------------------------------
SLOFILES
=
$(SHL1OBJS)
# --- Targets ------------------------------------------------------
.INCLUDE
:
target.mk
.INCLUDE
:
$(PRJ)$/qa$/cppunit_local.mk
sal/qa/rtl/doublelock/makefile.mk
deleted
100644 → 0
Dosyayı görüntüle @
cf77e8a0
#*************************************************************************
#
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# Copyright 2000, 2010 Oracle and/or its affiliates.
#
# OpenOffice.org - a multi-platform office productivity suite
#
# This file is part of OpenOffice.org.
#
# OpenOffice.org is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License version 3
# only, as published by the Free Software Foundation.
#
# OpenOffice.org is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License version 3 for more details
# (a copy is included in the LICENSE file that accompanied this code).
#
# You should have received a copy of the GNU Lesser General Public License
# version 3 along with OpenOffice.org. If not, see
# <http://www.openoffice.org/license.html>
# for a copy of the LGPLv3 License.
#
#*************************************************************************
PRJ
=
..
$/
..
$/
..
PRJNAME
=
sal
TARGET
=
qa_rtl_doublelock
ENABLE_EXCEPTIONS
=
TRUE
VISIBILITY_HIDDEN
=
TRUE
# --- Settings -----------------------------------------------------
.INCLUDE
:
settings.mk
.IF
"$(OS)"
==
"IOS"
CFLAGSCXX
+=
-DCPPUNIT_PLUGIN_EXPORTED_NAME
=
cppunitTest_
$(TARGET)
.ENDIF
CFLAGS
+=
$(LFS_CFLAGS)
CXXFLAGS
+=
$(LFS_CFLAGS)
CFLAGSCXX
+=
$(CPPUNIT_CFLAGS)
.IF
"$(COM)"
==
"MSC"
CFLAGS
+=
/Ob1
.ENDIF
SHL1OBJS
=
\
$(SLO)$/
rtl_doublelocking.obj
SHL1TARGET
=
rtl_doublelocking
SHL1STDLIBS
=
$(SALLIB)
$(CPPUNITLIB)
SHL1IMPLIB
=
i
$(SHL1TARGET)
DEF1NAME
=
$(SHL1TARGET)
SHL1USE_EXPORTS
=
name
#------------------------------- All object files -------------------------------
SLOFILES
=
$(SHL1OBJS)
# --- Targets ------------------------------------------------------
.INCLUDE
:
target.mk
.INCLUDE
:
$(PRJ)$/qa$/cppunit_local.mk
sal/qa/rtl/locale/makefile.mk
deleted
100644 → 0
Dosyayı görüntüle @
cf77e8a0
#*************************************************************************
#
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# Copyright 2000, 2010 Oracle and/or its affiliates.
#
# OpenOffice.org - a multi-platform office productivity suite
#
# This file is part of OpenOffice.org.
#
# OpenOffice.org is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License version 3
# only, as published by the Free Software Foundation.
#
# OpenOffice.org is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License version 3 for more details
# (a copy is included in the LICENSE file that accompanied this code).
#
# You should have received a copy of the GNU Lesser General Public License
# version 3 along with OpenOffice.org. If not, see
# <http://www.openoffice.org/license.html>
# for a copy of the LGPLv3 License.
#
#*************************************************************************
PRJ
=
..
$/
..
$/
..
PRJNAME
=
sal
TARGET
=
qa_rtl_locale
ENABLE_EXCEPTIONS
=
TRUE
VISIBILITY_HIDDEN
=
TRUE
# --- Settings -----------------------------------------------------
.INCLUDE
:
settings.mk
.IF
"$(OS)"
==
"IOS"
CFLAGSCXX
+=
-DCPPUNIT_PLUGIN_EXPORTED_NAME
=
cppunitTest_
$(TARGET)
.ENDIF
CFLAGS
+=
$(LFS_CFLAGS)
CXXFLAGS
+=
$(LFS_CFLAGS)
CFLAGSCXX
+=
$(CPPUNIT_CFLAGS)
SHL1OBJS
=
\
$(SLO)$/
rtl_locale.obj
SHL1TARGET
=
rtl_locale
SHL1STDLIBS
=
$(SALLIB)
$(CPPUNITLIB)
SHL1IMPLIB
=
i
$(SHL1TARGET)
# SHL1DEF= $(MISC)$/$(SHL1TARGET).def
DEF1NAME
=
$(SHL1TARGET)
# DEF1EXPORTFILE= export.exp
SHL1USE_EXPORTS
=
name
#------------------------------- All object files -------------------------------
SLOFILES
=
$(SHL1OBJS)
# --- Targets ------------------------------------------------------
.INCLUDE
:
target.mk
.INCLUDE
:
$(PRJ)$/qa$/cppunit_local.mk
sal/qa/rtl/oustringbuffer/makefile.mk
deleted
100644 → 0
Dosyayı görüntüle @
cf77e8a0
#*************************************************************************
#
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# Copyright 2000, 2010 Oracle and/or its affiliates.
#
# OpenOffice.org - a multi-platform office productivity suite
#
# This file is part of OpenOffice.org.
#
# OpenOffice.org is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License version 3
# only, as published by the Free Software Foundation.
#
# OpenOffice.org is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License version 3 for more details
# (a copy is included in the LICENSE file that accompanied this code).
#
# You should have received a copy of the GNU Lesser General Public License
# version 3 along with OpenOffice.org. If not, see
# <http://www.openoffice.org/license.html>
# for a copy of the LGPLv3 License.
#
#*************************************************************************
PRJ
:=
..
$/
..
$/
..
PRJNAME
:=
sal
TARGET
:=
qa_rtl_oustringbuffer
ENABLE_EXCEPTIONS
:=
TRUE
VISIBILITY_HIDDEN
=
TRUE
.INCLUDE
:
settings.mk
.IF
"$(OS)"
==
"IOS"
CFLAGSCXX
+=
-DCPPUNIT_PLUGIN_EXPORTED_NAME
=
cppunitTest_
$(TARGET)
.ENDIF
CFLAGS
+=
$(LFS_CFLAGS)
CXXFLAGS
+=
$(LFS_CFLAGS)
CFLAGSCXX
+=
$(CPPUNIT_CFLAGS)
SHL1TARGET
:=
$(TARGET)
SHL1OBJS
:=
\
$(SLO)$/
test_oustringbuffer_appendchar.obj
\
$(SLO)$/
test_oustringbuffer_utf32.obj
\
$(SLO)$/
test_oustringbuffer_tostring.obj
\
$(SLO)$/
test_oustringbuffer_noadditional.obj
SHL1IMPLIB
:=
i
$(SHL1TARGET)
SHL1STDLIBS
:=
$(SALLIB)
$(CPPUNITLIB)
SHL1USE_EXPORTS
:=
name
DEF1NAME
:=
$(SHL1TARGET)
.INCLUDE
:
target.mk
.INCLUDE
:
$(PRJ)$/qa$/cppunit_local.mk
sal/qa/sal/makefile.mk
deleted
100644 → 0
Dosyayı görüntüle @
cf77e8a0
#*************************************************************************
#
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# Copyright 2000, 2010 Oracle and/or its affiliates.
#
# OpenOffice.org - a multi-platform office productivity suite
#
# This file is part of OpenOffice.org.
#
# OpenOffice.org is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License version 3
# only, as published by the Free Software Foundation.
#
# OpenOffice.org is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License version 3 for more details
# (a copy is included in the LICENSE file that accompanied this code).
#
# You should have received a copy of the GNU Lesser General Public License
# version 3 along with OpenOffice.org. If not, see
# <http://www.openoffice.org/license.html>
# for a copy of the LGPLv3 License.
#
#*************************************************************************
PRJ
:=
..
$/
..
PRJNAME
:=
sal
TARGET
:=
qa_sal
ENABLE_EXCEPTIONS
:=
TRUE
VISIBILITY_HIDDEN
:=
TRUE
.INCLUDE
:
settings.mk
.IF
"$(OS)"
==
"IOS"
CFLAGSCXX
+=
-DCPPUNIT_PLUGIN_EXPORTED_NAME
=
cppunitTest_
$(TARGET)
.ENDIF
SHL1TARGET
=
$(TARGET)
_types
SHL1OBJS
=
$(SLO)$/
test_types.obj
SHL1STDLIBS
=
$(SALLIB)
$(CPPUNITLIB)
SHL1USE_EXPORTS
=
name
SHL1IMPLIB
=
i
$(SHL1TARGET)
DEF1NAME
=
$(SHL1TARGET)
SLOFILES
=
$(SHL1OBJS)
.INCLUDE
:
target.mk
.INCLUDE
:
$(PRJ)$/qa$/cppunit_local.mk
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