Skip to content

Commit

Permalink
Auto merge of #13722 - Manishearth:test-stylo, r=jdm
Browse files Browse the repository at this point in the history
Remove test-geckolib, run test-stylo on travis

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

<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/13722)
<!-- Reviewable:end -->
  • Loading branch information
bors-servo committed Oct 13, 2016
2 parents d9bb663 + bfee89a commit 2bb7cc2
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion components/style/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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)]
Expand Down
11 changes: 0 additions & 11 deletions python/servo/testing_commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,17 +158,6 @@ def suite_for_path(self, path_arg):
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')
Expand Down

0 comments on commit 2bb7cc2

Please sign in to comment.