Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
pybind11
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
open
pybind11
Commits
6d6fd099
Commit
6d6fd099
authored
Oct 01, 2015
by
Wenzel Jakob
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed testing infrastructure
parent
be0e834b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
36 additions
and
4 deletions
+36
-4
CMakeLists.txt
+1
-1
example/run_test.py
+35
-3
No files found.
CMakeLists.txt
View file @
6d6fd099
...
@@ -113,6 +113,6 @@ endif()
...
@@ -113,6 +113,6 @@ endif()
enable_testing
()
enable_testing
()
set
(
RUN_TEST
${
PYTHON_EXECUTABLE
}
${
CMAKE_CURRENT_SOURCE_DIR
}
/example/run_test.py
)
set
(
RUN_TEST
${
PYTHON_EXECUTABLE
}
${
CMAKE_CURRENT_SOURCE_DIR
}
/example/run_test.py
)
foreach
(
i RANGE 1
7
)
foreach
(
i RANGE 1
12
)
add_test
(
NAME example
${
i
}
COMMAND
${
RUN_TEST
}
example
${
i
}
)
add_test
(
NAME example
${
i
}
COMMAND
${
RUN_TEST
}
example
${
i
}
)
endforeach
()
endforeach
()
example/run_test.py
View file @
6d6fd099
import
subprocess
,
sys
,
os
import
sys
import
os
import
re
import
subprocess
remove_unicode_marker
=
re
.
compile
(
r'u(\'[^\']*\')'
)
remove_long_marker
=
re
.
compile
(
r'([0-9])L'
)
remove_hex
=
re
.
compile
(
r'0x[0-9a-f]+'
)
shorten_floats
=
re
.
compile
(
r'([1-9][0-9]*\.[0-9]{4})[0-9]*'
)
def
sanitize
(
lines
):
lines
=
lines
.
split
(
'
\n
'
)
for
i
in
range
(
len
(
lines
)):
line
=
lines
[
i
]
if
line
.
startswith
(
" |"
):
line
=
""
line
=
remove_unicode_marker
.
sub
(
r'\1'
,
line
)
line
=
remove_long_marker
.
sub
(
r'\1'
,
line
)
line
=
remove_hex
.
sub
(
r'0xHEX'
,
line
)
line
=
shorten_floats
.
sub
(
r'\1'
,
line
)
line
=
line
.
replace
(
'__builtin__'
,
'builtins'
)
line
=
line
.
replace
(
'example.'
,
''
)
line
=
line
.
replace
(
'method of builtins.PyCapsule instance'
,
''
)
line
=
line
.
strip
()
lines
[
i
]
=
line
lines
=
'
\n
'
.
join
(
sorted
([
l
for
l
in
lines
if
l
!=
""
]))
print
(
'=================='
)
print
(
lines
)
return
lines
path
=
os
.
path
.
dirname
(
__file__
)
path
=
os
.
path
.
dirname
(
__file__
)
if
path
!=
''
:
if
path
!=
''
:
os
.
chdir
(
path
)
os
.
chdir
(
path
)
name
=
sys
.
argv
[
1
]
name
=
sys
.
argv
[
1
]
output
=
subprocess
.
check_output
([
sys
.
executable
,
name
+
".py"
])
.
decode
(
'utf-8'
)
output_bytes
=
subprocess
.
check_output
([
sys
.
executable
,
name
+
".py"
])
reference
=
open
(
name
+
'.ref'
,
'r'
)
.
read
()
output
=
sanitize
(
output_bytes
.
decode
(
'utf-8'
))
reference
=
sanitize
(
open
(
name
+
'.ref'
,
'r'
)
.
read
())
if
output
==
reference
:
if
output
==
reference
:
print
(
'Test "
%
s" succeeded.'
%
name
)
print
(
'Test "
%
s" succeeded.'
%
name
)
...
...
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