servo: Merge #13722 - Remove test-geckolib, run test-stylo on travis (from Manishearth:test-stylo); r=jdm

test-geckolib used to do things, but almost all of geckolib has been moved to the style crate, with the tests in `tests/unit/stylo`. (`./mach test-stylo) Now test-geckolib does nothing.

Fixes #13721
r? @jdm

Source-Repo: https://github.com/servo/servo
Source-Revision: 2bb7cc227bf2a3260e3b9c4f3953ca55d93629fe
This commit is contained in:
Manish Goregaokar 2016-10-13 01:50:37 -05:00
Родитель a228c9b31a
Коммит c1f91ab2e2
3 изменённых файлов: 2 добавлений и 13 удалений

Просмотреть файл

@ -15,7 +15,7 @@ matrix:
- ./mach test-compiletest
- ./mach test-unit
- ./mach build-geckolib
- ./mach test-geckolib
- ./mach test-stylo
- bash etc/ci/check_no_unwrap.sh
- bash etc/ci/lockfile_changed.sh
- bash etc/ci/manifest_changed.sh

Просмотреть файл

@ -62,7 +62,7 @@ extern crate heapsize;
#[allow(unused_extern_crates)]
#[macro_use]
extern crate lazy_static;
extern crate libc;
#[cfg(feature = "gecko")] extern crate libc;
#[macro_use]
extern crate log;
#[allow(unused_extern_crates)]

Просмотреть файл

@ -158,17 +158,6 @@ class MachCommands(CommandBase):
return suite
return None
@Command('test-geckolib',
description='Test geckolib sanity checks',
category='testing')
def test_geckolib(self):
self.ensure_bootstrapped()
env = self.build_env()
env["RUST_BACKTRACE"] = "1"
return call(["cargo", "test"], env=env, cwd=path.join("ports", "geckolib"))
@Command('test-perf',
description='Run the page load performance test',
category='testing')