FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
python/test/fabscript at develop · boostorg/python · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
boostorg
/
python
Public
Notifications
You must be signed in to change notification settings
Fork
223
Star
537
Code
Issues
173
Pull requests
34
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
python
/
test
/
fabscript
Copy path
More file actions
More file actions
Latest commit
History
History
History
186 lines (170 loc) · 6.63 KB
Breadcrumbs
python
/
test
/
fabscript
Copy path
File metadata and controls
186 lines (170 loc) · 6.63 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
# -*- python -*-
#
# Copyright (c) 2016 Stefan Seefeld
# All rights reserved.
#
# Distributed under the Boost Software License, Version 1.0.
# (See accompanying file LICENSE_1_0.txt or copy at
# http://www.boost.org/LICENSE_1_0.txt)
from
faber
import
platform
from
faber
.
feature
import
set
from
faber
.
tools
.
compiler
import
runpath
from
faber
.
tools
.
python
import
python
,
pythonpath
from
faber
.
artefacts
.
object
import
object
from
faber
.
artefacts
.
binary
import
binary
from
faber
.
artefacts
.
python
import
extension
from
faber
.
test
import
test
,
report
,
fail
src
=
module
(
'..src'
)
python_libs
=
python
.
instance
().
libs
features
|=
runpath
(
src
.
bpl
.
path
,
base
=
''
)
def
extension_test
(
name
,
exts
=
[],
script
=
None
,
numpy
=
False
,
features
=
features
,
condition
=
None
):
"""Create a Python extension test `name`.
Arguments:
* name: the name of the test.
* exts: extensions to be compiled, <name> if none are given.
* script: the test script to execute, <name>.py if none is given.
* numpy: if true, add boost_numpy to sources
* features: pre-defined features
* condition: any condition under which to run the test
Return:
* the test artefact"""
features
=
features
.
copy
()
extensions
=
[]
libs
=
[
src
.
bnl
,
src
.
bpl
]
if
numpy
else
[
src
.
bpl
]
for
ext
in
exts
or
[
name
]:
if
type
(
ext
)
is
str
:
# build from a single source file
ext_name
=
ext
if
ext
!=
name
else
ext
+
'_ext'
sources
=
[
ext
+
'.cpp'
]
else
:
# build from a list of source files
ext_name
=
ext
[
0
]
if
ext
[
0
]
!=
name
else
ext
[
0
]
+
'_ext'
sources
=
[
source
+
'.cpp'
for
source
in
ext
]
ext
=
extension
(
ext_name
,
sources
+
libs
,
features
=
features
)
features
|=
pythonpath
(
ext
.
path
,
base
=
''
)
extensions
.
append
(
ext
)
if
not
script
:
script
=
name
+
'.py'
return
test
(
name
,
script
,
run
=
python
.
run
,
dependencies
=
extensions
,
features
=
features
,
condition
=
condition
)
tests
=
[]
for
t
in
[(
'injected'
,),
(
'properties'
,),
(
'return_arg'
,),
(
'staticmethod'
,),
(
'boost_shared_ptr'
,),
(
'enable_shared_from_this'
,),
(
'andreas_beyer'
,),
(
'polymorphism'
,),
(
'polymorphism2'
,),
(
'wrapper_held_type'
,),
(
'minimal'
,),
(
'args'
,),
(
'raw_ctor'
,),
(
'exception_translator'
,),
(
'module_init_exception'
,),
(
'module_nogil'
,),
(
'test_enum'
, [
'enum_ext'
]),
(
'test_cltree'
, [
'cltree'
]),
(
'newtest'
, [
'm1'
,
'm2'
]),
(
'const_argument'
,),
(
'keywords_test'
, [
'keywords'
]),
(
'test_pointer_adoption'
,),
(
'operators'
,),
(
'operators_wrapper'
,),
(
'callbacks'
,),
(
'defaults'
,),
(
'object'
,),
(
'class'
,),
(
'aligned_class'
,),
(
'list'
,),
(
'long'
,),
(
'dict'
,),
(
'tuple'
,),
(
'str'
,),
(
'slice'
,),
(
'virtual_functions'
,),
(
'back_reference'
,),
(
'implicit'
,),
(
'data_members'
,),
(
'ben_scott1'
,),
(
'bienstman1'
,),
(
'bienstman2'
,),
(
'bienstman3'
,),
(
'multi_arg_constructor'
,),
(
'iterator'
, [
'iterator'
,
'input_iterator'
]),
(
'stl_iterator'
,),
(
'extract'
,),
(
'crossmod_opaque'
, [
'crossmod_opaque_a'
,
'crossmod_opaque_b'
]),
(
'opaque'
,),
(
'voidptr'
,),
(
'pickle1'
,),
(
'pickle2'
,),
(
'pickle3'
,),
(
'pickle4'
,),
(
'nested'
,),
(
'docstring'
,),
(
'pytype_function'
,),
(
'vector_indexing_suite'
,),
(
'pointer_vector'
,),
(
'builtin_converters'
, [],
'test_builtin_converters.py'
),
(
'map_indexing_suite'
,
[[
'map_indexing_suite'
,
'int_map_indexing_suite'
,
'a_map_indexing_suite'
]])]:
tests
.
append
(
extension_test
(
*
t
))
tests
.
append
(
extension_test
(
'shared_ptr'
,
condition
=
set
.
define
.
contains
(
'HAS_CXX11'
)))
#tests.append(extension_test('polymorphism2_auto_ptr',
# condition=set.define.contains('HAS_CXX11').not_()))
#tests.append(extension_test('auto_ptr',
# condition=set.define.contains('HAS_CXX11')))
import_
=
binary
(
'import_'
, [
'import_.cpp'
,
src
.
bpl
],
features
=
features
|
python_libs
)
if
platform
.
os
==
'Windows'
:
command
=
"""set PATH=$(runpath);%PATH%
$(>[0]) $(>[1])"""
else
:
command
=
'LD_LIBRARY_PATH=$(runpath) $(>[0]) $(>[1])'
tests
.
append
(
test
(
'import'
, [
import_
,
'import_.py'
],
run
=
action
(
'run'
,
command
),
features
=
features
))
tests
.
append
(
extension_test
(
'calling_conventions'
,
condition
=
platform
.
os
==
'Windows'
))
tests
.
append
(
extension_test
(
'calling_conventions_mf'
,
condition
=
platform
.
os
==
'Windows'
))
for
t
in
[
'destroy_test'
,
'pointer_type_id_test'
,
'bases'
,
'pointee'
,
'if_else'
,
'pointee'
,
'result'
,
'upcast'
,
'select_from_python_test'
]:
tests
.
append
(
test
(
t
,
binary
(
t
, [
t
+
'.cpp'
,
src
.
bpl
],
features
=
features
),
features
=
features
,
run
=
True
))
for
t
in
[
'indirect_traits_test'
,
'string_literal'
,
'borrowed'
,
'object_manager'
,
'copy_ctor_mutates_rhs'
,
'select_holder'
,
'select_arg_to_python_test'
]:
tests
.
append
(
test
(
t
,
object
(
t
, [
t
+
'.cpp'
],
features
=
features
)))
for
t
in
[
'raw_pyobject_fail1'
,
'raw_pyobject_fail2'
,
'as_to_python_function'
,
'object_fail1'
]:
tests
.
append
(
test
(
t
,
object
(
t
, [
t
+
'.cpp'
],
features
=
features
),
expected
=
fail
))
for
t
in
[
'numpy/dtype'
,
'numpy/ufunc'
,
'numpy/templates'
,
'numpy/ndarray'
,
'numpy/indexing'
,
'numpy/shapes'
]:
tests
.
append
(
extension_test
(
t
,
numpy
=
True
,
condition
=
set
.
define
.
contains
(
'HAS_NUMPY'
)))
python_version_major
,
python_version_minor
=
map
(
int
,
python
.
instance
().
version
.
split
(
'.'
)[:
2
])
tests
.
append
(
extension_test
(
"module_multi_phase"
,
condition
=
python_version_major
>
3
or
(
python_version_major
==
3
and
python_version_minor
>=
5
)))
tests
.
append
(
extension_test
(
"module_multi_phase_nogil"
,
condition
=
python_version_major
>
3
or
(
python_version_major
==
3
and
python_version_minor
>=
5
)))
tests
.
append
(
extension_test
(
"module_multi_phase_state"
,
condition
=
python_version_major
>
3
or
(
python_version_major
==
3
and
python_version_minor
>=
5
)))
default
=
report
(
'report'
,
tests
,
fail_on_failures
=
True
)
Back
|
FazBrowse Home
|
New Git URL