aboutsummaryrefslogtreecommitdiffstats
path: root/python/servo/testing_commands.py
diff options
context:
space:
mode:
authorPaul Rouget <me@paulrouget.com>2019-04-17 10:18:14 +0200
committerPaul Rouget <me@paulrouget.com>2019-04-29 10:04:51 +0200
commit21ed7653f491d9e378aa7a334b40e7327f4bfc90 (patch)
tree28ef0394a720aa569d25dd2f6989a16ea11a3708 /python/servo/testing_commands.py
parentd58ea974baff1b51a43d2e2bf4b287ff11991a8d (diff)
downloadservo-21ed7653f491d9e378aa7a334b40e7327f4bfc90.tar.gz
servo-21ed7653f491d9e378aa7a334b40e7327f4bfc90.zip
Refactoring of the Glutin port in preparation of the compositor refactoring.
Diffstat (limited to 'python/servo/testing_commands.py')
-rw-r--r--python/servo/testing_commands.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/servo/testing_commands.py b/python/servo/testing_commands.py
index c8bb5e7511c..f4b324d4c62 100644
--- a/python/servo/testing_commands.py
+++ b/python/servo/testing_commands.py
@@ -279,7 +279,7 @@ class MachCommands(CommandBase):
features = self.servo_features()
if len(packages) > 0 or len(in_crate_packages) > 0:
- args = ["cargo", "bench" if bench else "test", "--manifest-path", self.ports_servo_manifest()]
+ args = ["cargo", "bench" if bench else "test", "--manifest-path", self.ports_glutin_manifest()]
for crate in packages:
args += ["-p", "%s_tests" % crate]
for crate in in_crate_packages: