Skip to content

Commit

Permalink
Bug 1657397 [wpt PR 24892] - [tools] Disable some multiprocessing tes…
Browse files Browse the repository at this point in the history
…ts, a=testonly

Automatic update from web-platform-tests
[tools] Disable some multiprocessing tests (#24892)

on macOS + Python 3.8

web-platform-tests/wpt#24880
--

wpt-commits: b2579d4e08a237fd1e38942ead6303495f3fbf07
wpt-pr: 24892

UltraBlame original commit: a1514a9fedd104f5b8aeaa9344c66efec8e31917
  • Loading branch information
marco-c committed Aug 16, 2020
1 parent 67de212 commit 50e17cb
Show file tree
Hide file tree
Showing 3 changed files with 180 additions and 0 deletions.
46 changes: 46 additions & 0 deletions testing/web-platform/tests/tools/serve/test_functional.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@
import
queue
import
sys
import
tempfile
import
threading
Expand Down Expand Up @@ -188,6 +190,50 @@
(
name
)
pytest
.
mark
.
skipif
(
sys
.
version_info
>
=
(
3
8
)
and
sys
.
platform
=
=
'
darwin
'

reason
=
"
multiprocessing
test
hangs
in
Python
3
.
8
on
macOS
(
#
24880
)
"
)
def
test_subprocess_exit
(
Expand Down
88 changes: 88 additions & 0 deletions testing/web-platform/tests/tools/wpt/tests/test_wpt.py
Original file line number Diff line number Diff line change
Expand Up @@ -1461,6 +1461,50 @@
mark
.
remote_network
pytest
.
mark
.
skipif
(
sys
.
version_info
>
=
(
3
8
)
and
sys
.
platform
=
=
'
darwin
'

reason
=
"
multiprocessing
test
hangs
in
Python
3
.
8
on
macOS
(
#
24880
)
"
)
def
test_run_failing_test
(
Expand Down Expand Up @@ -1719,6 +1763,50 @@
mark
.
remote_network
pytest
.
mark
.
skipif
(
sys
.
version_info
>
=
(
3
8
)
and
sys
.
platform
=
=
'
darwin
'

reason
=
"
multiprocessing
test
hangs
in
Python
3
.
8
on
macOS
(
#
24880
)
"
)
def
test_run_verify_unstable
(
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
import
sys
import
unittest
import
uuid
Expand Down Expand Up @@ -31,6 +33,50 @@
base
import
TestUsingServer
pytest
.
mark
.
skipif
(
sys
.
version_info
>
=
(
3
8
)
and
sys
.
platform
=
=
'
darwin
'

reason
=
"
multiprocessing
test
hangs
in
Python
3
.
8
on
macOS
(
#
24880
)
"
)
class
TestResponseSetCookie
(
Expand Down

0 comments on commit 50e17cb

Please sign in to comment.