Alan Somers

Results 235 issues of Alan Somers

man/audit.log.5 cross-references au_to_header64_ex(3), but no function by that name exists.

These fixes allowing raising praudit's WARNS up to 6, and libbsm's WARNS up to 3.

print_arb_tok creates pointers to a stream of (presumably packed) tokens, then casts those pointers to pointer types with higher alignments and dereferences them. That's not a problem on amd64, but...

It would be good to make a new release in time for inclusion into FreeBSD 12.0. Only 7 days are left! The following open issues should be fixed first -...

--each-feature and --feature-powerset are great! My only complaint is that they are slow. bpytop shows that I'm never using more than one core when running cargo-hack. It would be awesome...

C-enhancement
help wanted

Mocktopus is very handy for mocking free functions. But when mocking structs, it requires a real copy of the struct to be instantiated. That's not always easy or possible in...

The crate builds now, but the passthrough example and the tests do not.

mock_derive cannot mock traits that are `Send`. Example: ```rust fn send() { #[mock] pub trait A { fn foo(&self); } let mock = MockA::new(); let _ = Box::new(mock) as Box;...

For my application I have need of a predicate that works on tuples. The `function` predicate is more cumbersome than I would like. Ideally, the predicate would apply a different...

enhancement

It sounds like `Predicate::find_case` is important, but for the life of me I can't figure out how to use it. Could you please expand its documentation? What I'm looking for...