blob: 8762d7d802c60dcce86f30a8df463b9bbd428e08 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# -*- coding: utf-8 -*-
from framework.test import GleanTest
from tests.all import profile
__all__ = ['profile']
GleanTest.GLOBAL_PARAMS += ["--quick"]
# These take too long
del profile.tests['shaders']['glsl-fs-inline-explosion']
del profile.tests['shaders']['glsl-fs-unroll-explosion']
del profile.tests['shaders']['glsl-vs-inline-explosion']
del profile.tests['shaders']['glsl-vs-unroll-explosion']
|