Skip to content

Commit 6802d07

Browse files
author
Rob Wood
committed
Bug 1455872 - Build support for the new raptor performance framework; r=gps
MozReview-Commit-ID: FBvXwkYfz0o --HG-- extra : rebase_source : eb611d916d1bfda47321f6f424eeefa5598c1f83
1 parent 6930542 commit 6802d07

File tree

5 files changed

+23
-0
lines changed

5 files changed

+23
-0
lines changed

build/gen_test_packages_manifest.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
'mozbase',
1919
'web-platform',
2020
'talos',
21+
'raptor',
2122
'awsy',
2223
'gtest',
2324
]
@@ -29,6 +30,7 @@
2930
'xpcshell',
3031
'web-platform',
3132
'talos',
33+
'raptor',
3234
'awsy',
3335
]
3436

python/mozbuild/mozbuild/action/test_archive.py

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,7 @@
106106
'mochitest/**',
107107
'reftest/**',
108108
'talos/**',
109+
'raptor/**',
109110
'awsy/**',
110111
'web-platform/**',
111112
'xpcshell/**',
@@ -405,6 +406,19 @@
405406
'dest': 'talos/talos/tests/webkit/PerformanceTests/',
406407
},
407408
],
409+
'raptor': [
410+
{
411+
'source': buildconfig.topsrcdir,
412+
'base': 'testing',
413+
'pattern': 'raptor/**',
414+
},
415+
{
416+
'source': buildconfig.topsrcdir,
417+
'base': 'third_party/webkit/PerformanceTests',
418+
'pattern': '**',
419+
'dest': 'raptor/raptor/tests/webkit/PerformanceTests/',
420+
},
421+
],
408422
'awsy': [
409423
{
410424
'source': buildconfig.topsrcdir,

taskcluster/taskgraph/test/test_target_tasks.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ class FakeTryOptionSyntax(object):
2020
def __init__(self, message, task_graph, graph_config):
2121
self.trigger_tests = 0
2222
self.talos_trigger_tests = 0
23+
self.raptor_trigger_tests = 0
2324
self.notifications = None
2425
self.env = []
2526
self.profile = False

testing/moz.build

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,3 +119,8 @@ with Files("tools/minidumpwriter/**"):
119119

120120
with Files("remote*"):
121121
BUG_COMPONENT = ("Firefox for Android", "Testing")
122+
123+
with Files("raptor/**"):
124+
BUG_COMPONENT = ("Testing", "Raptor")
125+
SCHEDULES.exclusive = ['raptor']
126+

testing/testsuite-targets.mk

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,7 @@ TEST_PKGS_ZIP := \
118118
mochitest \
119119
reftest \
120120
talos \
121+
raptor \
121122
awsy \
122123
xpcshell \
123124
$(NULL)

0 commit comments

Comments
 (0)