Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
yangql
googletest
Commits
086825de
Commit
086825de
authored
Mar 05, 2018
by
Gennadiy Civil
Browse files
merges-6
parent
731dbc4a
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
4 additions
and
7 deletions
+4
-7
googletest/test/gtest_json_outfiles_test.py
googletest/test/gtest_json_outfiles_test.py
+1
-2
googletest/test/gtest_json_output_unittest.py
googletest/test/gtest_json_output_unittest.py
+1
-2
googletest/test/gtest_json_test_utils.py
googletest/test/gtest_json_test_utils.py
+1
-1
googletest/test/gtest_test_utils.py
googletest/test/gtest_test_utils.py
+1
-1
googletest/test/gtest_uninitialized_test.py
googletest/test/gtest_uninitialized_test.py
+0
-1
No files found.
googletest/test/gtest_json_outfiles_test.py
View file @
086825de
...
@@ -32,9 +32,8 @@
...
@@ -32,9 +32,8 @@
import
json
import
json
import
os
import
os
import
gtest_test_utils
import
gtest_json_test_utils
import
gtest_json_test_utils
import
gtest_test_utils
GTEST_OUTPUT_SUBDIR
=
'json_outfiles'
GTEST_OUTPUT_SUBDIR
=
'json_outfiles'
GTEST_OUTPUT_1_TEST
=
'gtest_xml_outfile1_test_'
GTEST_OUTPUT_1_TEST
=
'gtest_xml_outfile1_test_'
...
...
googletest/test/gtest_json_output_unittest.py
View file @
086825de
...
@@ -37,9 +37,8 @@ import os
...
@@ -37,9 +37,8 @@ import os
import
re
import
re
import
sys
import
sys
import
gtest_test_utils
import
gtest_json_test_utils
import
gtest_json_test_utils
import
gtest_test_utils
GTEST_FILTER_FLAG
=
'--gtest_filter'
GTEST_FILTER_FLAG
=
'--gtest_filter'
GTEST_LIST_TESTS_FLAG
=
'--gtest_list_tests'
GTEST_LIST_TESTS_FLAG
=
'--gtest_list_tests'
...
...
googletest/test/gtest_json_test_utils.py
View file @
086825de
...
@@ -44,7 +44,7 @@ def normalize(obj):
...
@@ -44,7 +44,7 @@ def normalize(obj):
"""
"""
def
_normalize
(
key
,
value
):
def
_normalize
(
key
,
value
):
if
key
==
'time'
:
if
key
==
'time'
:
return
re
.
sub
(
r
'^\d+(\.\d+)?s$'
,
u
'*'
,
value
)
return
re
.
sub
(
r
'^\d+(\.\d+)?s$'
,
'*'
,
value
)
elif
key
==
'timestamp'
:
elif
key
==
'timestamp'
:
return
re
.
sub
(
r
'^\d{4}-\d\d-\d\dT\d\d:\d\d:\d\dZ$'
,
'*'
,
value
)
return
re
.
sub
(
r
'^\d{4}-\d\d-\d\dT\d\d:\d\d:\d\dZ$'
,
'*'
,
value
)
elif
key
==
'failure'
:
elif
key
==
'failure'
:
...
...
googletest/test/gtest_test_utils.py
View file @
086825de
...
@@ -227,7 +227,7 @@ class Subprocess:
...
@@ -227,7 +227,7 @@ class Subprocess:
combined in a string.
combined in a string.
"""
"""
# The subprocess module is the preferable way of running programs
# The subprocess module is the prefer
r
able way of running programs
# since it is available and behaves consistently on all platforms,
# since it is available and behaves consistently on all platforms,
# including Windows. But it is only available starting in python 2.4.
# including Windows. But it is only available starting in python 2.4.
# In earlier python versions, we revert to the popen2 module, which is
# In earlier python versions, we revert to the popen2 module, which is
...
...
googletest/test/gtest_uninitialized_test.py
View file @
086825de
...
@@ -33,7 +33,6 @@
...
@@ -33,7 +33,6 @@
__author__
=
'wan@google.com (Zhanyong Wan)'
__author__
=
'wan@google.com (Zhanyong Wan)'
import
os
import
gtest_test_utils
import
gtest_test_utils
COMMAND
=
gtest_test_utils
.
GetTestExecutablePath
(
'gtest_uninitialized_test_'
)
COMMAND
=
gtest_test_utils
.
GetTestExecutablePath
(
'gtest_uninitialized_test_'
)
...
...
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