summaryrefslogtreecommitdiff
path: root/tests/tests.rs
diff options
context:
space:
mode:
authorEmilio Cobos Álvarez <emilio@crisal.io>2019-10-11 16:20:17 +0200
committerEmilio Cobos Álvarez <emilio@crisal.io>2019-10-14 14:15:46 +0200
commita38c046a0604212875e7b7321db212118d99c22d (patch)
treec3e17c2c0e1a6df9944a7ecb5ca18cc98ffc93c3 /tests/tests.rs
parent5324c3e4aa1901f996ad9dfff58cf09783bb843a (diff)
tests: Remove support for test directive that is no longer used.
ae0fdf7a5519a175d887389c80399234637bdc29 changed the setup for the only test that actually used this.
Diffstat (limited to 'tests/tests.rs')
-rw-r--r--tests/tests.rs4
1 files changed, 0 insertions, 4 deletions
diff --git a/tests/tests.rs b/tests/tests.rs
index 01e90be8..1fe8a1ec 100644
--- a/tests/tests.rs
+++ b/tests/tests.rs
@@ -262,10 +262,6 @@ fn create_bindgen_builder(header: &PathBuf) -> Result<Option<Builder>, Error> {
.map(ToString::to_string)
.chain(flags)
.collect();
- } else if line.contains("bindgen-generate-bindings-on-linux-only") &&
- !cfg!(target_os = "linux")
- {
- return Ok(None);
}
}