You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
aya/test/integration-test
Tamir Duberstein 961f45da37
Replace matches with assert_matches
The matches crate has been archived now that `matches!` is in std.
However `assert_matches!` is still unstable in std, and the
assert_matches crate provides a more expressive form:

```
assert_matches!(foo, Ok(bar) => {
  assert_eq!(bar, baz);
});
```
1 year ago
..
bpf integration-test: compile C probes using build.rs 1 year ago
src Replace matches with assert_matches 1 year ago
Cargo.toml Replace matches with assert_matches 1 year ago
build.rs integration-test: avoid cargo deadflock 1 year ago