Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
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ç
Batuhan Osman TASKAYA
cpython
Commits
ccf608c9
Kaydet (Commit)
ccf608c9
authored
May 06, 2009
tarafından
Tarek Ziadé
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
more build_clib cleanup + test coverage
üst
b04a0570
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
60 additions
and
4 deletions
+60
-4
build_clib.py
Lib/distutils/command/build_clib.py
+3
-4
test_build_clib.py
Lib/distutils/tests/test_build_clib.py
+57
-0
No files found.
Lib/distutils/command/build_clib.py
Dosyayı görüntüle @
ccf608c9
...
@@ -86,7 +86,7 @@ class build_clib (Command):
...
@@ -86,7 +86,7 @@ class build_clib (Command):
if
self
.
include_dirs
is
None
:
if
self
.
include_dirs
is
None
:
self
.
include_dirs
=
self
.
distribution
.
include_dirs
or
[]
self
.
include_dirs
=
self
.
distribution
.
include_dirs
or
[]
if
type
(
self
.
include_dirs
)
is
StringType
:
if
isinstance
(
self
.
include_dirs
,
str
)
:
self
.
include_dirs
=
string
.
split
(
self
.
include_dirs
,
self
.
include_dirs
=
string
.
split
(
self
.
include_dirs
,
os
.
pathsep
)
os
.
pathsep
)
...
@@ -170,8 +170,7 @@ class build_clib (Command):
...
@@ -170,8 +170,7 @@ class build_clib (Command):
filenames
=
[]
filenames
=
[]
for
(
lib_name
,
build_info
)
in
self
.
libraries
:
for
(
lib_name
,
build_info
)
in
self
.
libraries
:
sources
=
build_info
.
get
(
'sources'
)
sources
=
build_info
.
get
(
'sources'
)
if
(
sources
is
None
or
if
sources
is
None
or
not
isinstance
(
sources
,
(
list
,
tuple
)):
type
(
sources
)
not
in
(
ListType
,
TupleType
)
):
raise
DistutilsSetupError
,
\
raise
DistutilsSetupError
,
\
(
"in 'libraries' option (library '
%
s'), "
(
"in 'libraries' option (library '
%
s'), "
"'sources' must be present and must be "
"'sources' must be present and must be "
...
@@ -183,7 +182,7 @@ class build_clib (Command):
...
@@ -183,7 +182,7 @@ class build_clib (Command):
def
build_libraries
(
self
,
libraries
):
def
build_libraries
(
self
,
libraries
):
for
(
lib_name
,
build_info
)
in
libraries
:
for
(
lib_name
,
build_info
)
in
libraries
:
sources
=
build_info
.
get
(
'sources'
)
sources
=
build_info
.
get
(
'sources'
)
if
sources
is
None
or
type
(
sources
)
not
in
(
ListType
,
TupleType
):
if
sources
is
None
or
not
isinstance
(
sources
,
(
list
,
tuple
)
):
raise
DistutilsSetupError
,
\
raise
DistutilsSetupError
,
\
(
"in 'libraries' option (library '
%
s'), "
+
(
"in 'libraries' option (library '
%
s'), "
+
"'sources' must be present and must be "
+
"'sources' must be present and must be "
+
...
...
Lib/distutils/tests/test_build_clib.py
Dosyayı görüntüle @
ccf608c9
...
@@ -39,6 +39,63 @@ class BuildCLibTestCase(support.TempdirManager,
...
@@ -39,6 +39,63 @@ class BuildCLibTestCase(support.TempdirManager,
libs
=
[(
'name'
,
{}),
(
'name'
,
{
'ok'
:
'good'
})]
libs
=
[(
'name'
,
{}),
(
'name'
,
{
'ok'
:
'good'
})]
cmd
.
check_library_list
(
libs
)
cmd
.
check_library_list
(
libs
)
def
test_get_source_files
(
self
):
pkg_dir
,
dist
=
self
.
create_dist
()
cmd
=
build_clib
(
dist
)
# "in 'libraries' option 'sources' must be present and must be
# a list of source filenames
cmd
.
libraries
=
[(
'name'
,
{})]
self
.
assertRaises
(
DistutilsSetupError
,
cmd
.
get_source_files
)
cmd
.
libraries
=
[(
'name'
,
{
'sources'
:
1
})]
self
.
assertRaises
(
DistutilsSetupError
,
cmd
.
get_source_files
)
cmd
.
libraries
=
[(
'name'
,
{
'sources'
:
[
'a'
,
'b'
]})]
self
.
assertEquals
(
cmd
.
get_source_files
(),
[
'a'
,
'b'
])
cmd
.
libraries
=
[(
'name'
,
{
'sources'
:
(
'a'
,
'b'
)})]
self
.
assertEquals
(
cmd
.
get_source_files
(),
[
'a'
,
'b'
])
cmd
.
libraries
=
[(
'name'
,
{
'sources'
:
(
'a'
,
'b'
)}),
(
'name2'
,
{
'sources'
:
[
'c'
,
'd'
]})]
self
.
assertEquals
(
cmd
.
get_source_files
(),
[
'a'
,
'b'
,
'c'
,
'd'
])
def
test_build_libraries
(
self
):
pkg_dir
,
dist
=
self
.
create_dist
()
cmd
=
build_clib
(
dist
)
class
FakeCompiler
:
def
compile
(
*
args
,
**
kw
):
pass
create_static_lib
=
compile
cmd
.
compiler
=
FakeCompiler
()
# build_libraries is also doing a bit of typoe checking
lib
=
[(
'name'
,
{
'sources'
:
'notvalid'
})]
self
.
assertRaises
(
DistutilsSetupError
,
cmd
.
build_libraries
,
lib
)
lib
=
[(
'name'
,
{
'sources'
:
list
()})]
cmd
.
build_libraries
(
lib
)
lib
=
[(
'name'
,
{
'sources'
:
tuple
()})]
cmd
.
build_libraries
(
lib
)
def
test_finalize_options
(
self
):
pkg_dir
,
dist
=
self
.
create_dist
()
cmd
=
build_clib
(
dist
)
cmd
.
include_dirs
=
'one-dir'
cmd
.
finalize_options
()
self
.
assertEquals
(
cmd
.
include_dirs
,
[
'one-dir'
])
cmd
.
include_dirs
=
None
cmd
.
finalize_options
()
self
.
assertEquals
(
cmd
.
include_dirs
,
[])
cmd
.
distribution
.
libraries
=
'WONTWORK'
self
.
assertRaises
(
DistutilsSetupError
,
cmd
.
finalize_options
)
def
test_suite
():
def
test_suite
():
return
unittest
.
makeSuite
(
BuildCLibTestCase
)
return
unittest
.
makeSuite
(
BuildCLibTestCase
)
...
...
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