File tree Expand file tree Collapse file tree 1 file changed +11
-1
lines changed
Packages/com.unity.render-pipelines.core/Tests/Runtime Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -55,12 +55,22 @@ protected IEnumerator Warmup()
55
55
}
56
56
}
57
57
58
- [ UnityPlatform ( exclude = new RuntimePlatform [ ] { RuntimePlatform . LinuxPlayer , RuntimePlatform . LinuxEditor } ) ] // Disabled on Linux (case 1370861)
58
+ // Fails on WebGL and Oculus Quest.
59
+ // Unfortunately, there is no good way to exclude Oculus Quest from the test without excluding all Android devices.
60
+ // https://jira.unity3d.com/browse/GFXFOUND-559
61
+ [ UnityPlatform ( exclude = new RuntimePlatform [ ] { RuntimePlatform . WebGLPlayer , RuntimePlatform . Android } ) ]
59
62
class RuntimeProfilerTests : RuntimeProfilerTestBase
60
63
{
61
64
[ UnityTest ]
62
65
public IEnumerator RuntimeProfilerGivesNonZeroOutput ( )
63
66
{
67
+ if ( ( Application . platform == RuntimePlatform . LinuxPlayer ||
68
+ Application . platform == RuntimePlatform . LinuxEditor )
69
+ && SystemInfo . graphicsDeviceType == GraphicsDeviceType . OpenGLCore )
70
+ {
71
+ Assert . Ignore ( "Test is failing on Linux OpenGLCore. https://jira.unity3d.com/browse/GFXFOUND-559" ) ;
72
+ }
73
+
64
74
yield return Warmup ( ) ;
65
75
66
76
m_ToCleanup = new GameObject ( ) ;
You can’t perform that action at this time.
0 commit comments