mirror of
https://github.com/pytorch/pytorch.git
synced 2025-10-20 21:14:14 +08:00
Do not XFAIL test_segfault in fbcode (#136661)
https://github.com/pytorch/pytorch/pull/136252 silence the failure on OSS, but the test actually passed on fbcode [T202241133](https://www.internalfb.com/intern/tasks/?t=202241133) Pull Request resolved: https://github.com/pytorch/pytorch/pull/136661 Approved by: https://github.com/malfet
This commit is contained in:
@ -1508,7 +1508,7 @@ def xfailIfTorchDynamo(func):
|
||||
|
||||
|
||||
def xfailIfLinux(func):
|
||||
return unittest.expectedFailure(func) if IS_LINUX and not TEST_WITH_ROCM else func
|
||||
return unittest.expectedFailure(func) if IS_LINUX and not TEST_WITH_ROCM and not IS_FBCODE else func
|
||||
|
||||
|
||||
def skipIfTorchDynamo(msg="test doesn't currently work with dynamo"):
|
||||
|
Reference in New Issue
Block a user