Skip to content

Commit c2f872e

Browse files
committed
update test_dependencies
1 parent 8012d9e commit c2f872e

File tree

3 files changed

+57
-43
lines changed

3 files changed

+57
-43
lines changed

test_dependencies/Cargo.lock

Lines changed: 54 additions & 40 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

test_dependencies/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ edition = "2021"
1111
# all dependencies (and their transitive ones) listed here can be used in `tests/`.
1212
tokio = { version = "1.0", features = ["full"] }
1313
libc = "0.2"
14-
page_size = "0.4.1"
14+
page_size = "0.5"
1515
num_cpus = "1.10.1"
1616

1717
getrandom_1 = { package = "getrandom", version = "0.1" }

tests/fail/crates/tokio_mvp.stderr

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
error: unsupported operation: can't call foreign function: epoll_create1
22
--> CARGO_REGISTRY/.../epoll.rs:LL:CC
33
|
4-
LL | syscall!(epoll_create1(flag)).map(|ep| Selector {
5-
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ can't call foreign function: epoll_create1
4+
LL | let res = syscall!(epoll_create1(libc::EPOLL_CLOEXEC));
5+
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ can't call foreign function: epoll_create1
66
|
77
= help: this is likely not a bug in the program; it indicates that the program performed an operation that the interpreter does not support
88
= note: BACKTRACE:

0 commit comments

Comments
 (0)