Skip to content

Commit fbca047

Browse files
committed
Remove testing_only_libclang_4 and expectations
1 parent 7eb6ef7 commit fbca047

19 files changed

+0
-500
lines changed

Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -85,4 +85,3 @@ testing_only_docs = []
8585
testing_only_extra_assertions = []
8686
testing_only_libclang_9 = []
8787
testing_only_libclang_5 = []
88-
testing_only_libclang_4 = []

appveyor.yml

-6
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,12 @@ environment:
22
RUST_BACKTRACE: 1
33
RUST_CHANNEL: "%Configuration%"
44
matrix:
5-
- TARGET: gnu
6-
LLVM_VERSION: 4.0.0-1
7-
BINDGEN_FEATURES: testing_only_libclang_4
85
- TARGET: gnu
96
LLVM_VERSION: 5.0.0-1
107
BINDGEN_FEATURES: testing_only_libclang_5
118
- TARGET: gnu
129
LLVM_VERSION: 9.0.0-1
1310
BINDGEN_FEATURES: testing_only_libclang_9
14-
- TARGET: msvc
15-
LLVM_VERSION: 4.0.0
16-
BINDGEN_FEATURES: testing_only_libclang_4
1711
- TARGET: msvc
1812
LLVM_VERSION: 5.0.0
1913
BINDGEN_FEATURES: testing_only_libclang_5

bindgen-integration/Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,3 @@ cc = "1.0"
1313
[features]
1414
testing_only_libclang_9 = ["bindgen/testing_only_libclang_9"]
1515
testing_only_libclang_5 = ["bindgen/testing_only_libclang_5"]
16-
testing_only_libclang_4 = ["bindgen/testing_only_libclang_4"]

src/main.rs

-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,6 @@ fn clang_version_check() {
2323
Some((9, 0))
2424
} else if cfg!(feature = "testing_only_libclang_5") {
2525
Some((5, 0))
26-
} else if cfg!(feature = "testing_only_libclang_4") {
27-
Some((4, 0))
2826
} else {
2927
None
3028
};

tests/expectations/build.rs

-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ use std::io::Write;
99
use std::path::Path;
1010

1111
const LIBCLANG_VERSION_DIRS: &'static [&'static str] = &[
12-
"libclang-4",
1312
"libclang-5",
1413
"libclang-9",
1514
];

tests/expectations/tests/libclang-4/abi_variadic_function.rs

-13
This file was deleted.

tests/expectations/tests/libclang-4/auto.rs

-34
This file was deleted.

tests/expectations/tests/libclang-4/call-conv-field.rs

-52
This file was deleted.

tests/expectations/tests/libclang-4/const_bool.rs

-28
This file was deleted.

tests/expectations/tests/libclang-4/constant-evaluate.rs

-27
This file was deleted.

tests/expectations/tests/libclang-4/error-E0600-cannot-apply-unary-negation-to-u32.rs

-11
This file was deleted.

tests/expectations/tests/libclang-4/issue-769-bad-instantiation-test.rs

-40
This file was deleted.

tests/expectations/tests/libclang-4/mangling-win32.rs

-51
This file was deleted.

tests/expectations/tests/libclang-4/objc_inheritance.rs

-68
This file was deleted.

0 commit comments

Comments
 (0)