RustAudio / rust-lv2

A safe, fast, and modular framework to create LV2 plugins, written in Rust
Apache License 2.0
171 stars 23 forks source link

Fix tests on Rust 1.81.0 #126

Open marcan opened 3 weeks ago

marcan commented 3 weeks ago

Unwinding across functions with the extern "C" ABI is UB, but previously worked. See: https://github.com/rust-lang/rust/issues/74990

Redo the tests so they don't rely on panics at all, using a reference-counted counter instead.