@@ -200,6 +200,13 @@ def WebglSuite(name):
200200 'task_regex' : ['web-platform-tests($|.*(-1|[^0-9])$)' ,
201201 'test-verify-wpt' ],
202202 },
203+ 'web-platform-tests-crashtest' : {
204+ 'aliases' : ('wpt' ,),
205+ 'mach_command' : 'web-platform-tests' ,
206+ 'kwargs' : {'include' : []},
207+ 'task_regex' : ['web-platform-tests-crashtests($|.*(-1|[^0-9])$)' ,
208+ 'test-verify-wpt' ],
209+ },
203210 'web-platform-tests-testharness' : {
204211 'aliases' : ('wpt' ,),
205212 'mach_command' : 'web-platform-tests' ,
@@ -295,6 +302,7 @@ def WebglSuite(name):
295302 ('mochitest' , 'webgl2-ext' ): 'mochitest-webgl2-ext' ,
296303 ('mochitest' , 'webgl2-deqp' ): 'mochitest-webgl2-deqp' ,
297304 ('web-platform-tests' , 'testharness' ): 'web-platform-tests-testharness' ,
305+ ('web-platform-tests' , 'crashtest' ): 'web-platform-tests-crashtest' ,
298306 ('web-platform-tests' , 'reftest' ): 'web-platform-tests-reftest' ,
299307 ('web-platform-tests' , 'wdspec' ): 'web-platform-tests-wdspec' ,
300308}
@@ -647,7 +655,7 @@ def add_wpt_manifest_data(self):
647655 for test_type , path , tests in manifest :
648656 full_path = os .path .join (tests_root , path )
649657 src_path = os .path .relpath (full_path , self .topsrcdir )
650- if test_type not in ["testharness" , "reftest" , "wdspec" ]:
658+ if test_type not in ["testharness" , "reftest" , "wdspec" , "crashtest" ]:
651659 continue
652660 for test in tests :
653661 self ._tests .append ({
0 commit comments