mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-02-17 22:32:51 +00:00
Bug 1390893 - Run test-verify on Windows and osx, as tier 3; r=jmaher
This commit is contained in:
parent
b49933b6e5
commit
4f0597254a
@ -172,6 +172,7 @@ windows-tests:
|
||||
- mochitest-webgl
|
||||
- reftest
|
||||
- reftest-no-accel
|
||||
- test-verify
|
||||
- web-platform-tests
|
||||
- web-platform-tests-reftests
|
||||
- xpcshell
|
||||
@ -227,6 +228,7 @@ macosx64-tests:
|
||||
- mochitest-media
|
||||
- mochitest-webgl
|
||||
- reftest
|
||||
- test-verify
|
||||
- web-platform-tests
|
||||
- web-platform-tests-reftests
|
||||
- xpcshell
|
||||
|
@ -1898,7 +1898,9 @@ test-verify:
|
||||
default: built-projects
|
||||
tier:
|
||||
by-test-platform:
|
||||
windows10-64-asan.*: 3
|
||||
macosx.*: 3
|
||||
windows.*: 3
|
||||
# windows10-64-asan.*: 3
|
||||
default: 2
|
||||
mozharness:
|
||||
script: desktop_unittest.py
|
||||
|
@ -7,6 +7,7 @@
|
||||
|
||||
import argparse
|
||||
import os
|
||||
import posixpath
|
||||
import re
|
||||
import sys
|
||||
import mozinfo
|
||||
@ -100,6 +101,9 @@ class VerifyToolsMixin(object):
|
||||
|
||||
# for each changed file, determine if it is a test file, and what suite it is in
|
||||
for file in changed_files:
|
||||
# manifest paths use os.sep (like backslash on Windows) but
|
||||
# automation-relevance uses posixpath.sep
|
||||
file = file.replace(posixpath.sep, os.sep)
|
||||
entry = tests_by_path.get(file)
|
||||
if entry:
|
||||
self.info("Verification found test %s" % file)
|
||||
|
Loading…
x
Reference in New Issue
Block a user