Skip to content

Commit 75ecc98

Browse files
committed
Auto merge of #1253 - gnzlbg:update-ctest, r=gnzlbg
Always use the latest ctest
2 parents 810b8c6 + 4bdf042 commit 75ecc98

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

libc-test/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ default-features = false
1010

1111
[build-dependencies]
1212
cc = "1.0"
13-
ctest = "0.2.8"
13+
ctest = "0.2"
1414

1515
[features]
1616
default = [ "use_std" ]

src/unix/solarish/mod.rs

+4-2
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,11 @@ pub type ino_t = ::c_ulong;
1515
pub type key_t = ::c_int;
1616
pub type major_t = ::c_uint;
1717
pub type minor_t = ::c_uint;
18-
pub type mode_t = ::c_uint;
18+
pub type mode_t
19+
= ::c_uint;
1920
pub type nlink_t = ::c_uint;
20-
pub type rlim_t = ::c_ulong;
21+
pub type rlim_t
22+
= ::c_ulong;
2123
pub type speed_t = ::c_uint;
2224
pub type tcflag_t = ::c_uint;
2325
pub type time_t = ::c_long;

0 commit comments

Comments
 (0)