Software Verificationpalooza

Software Verificationpalooza

0 Calificaciones
0
Episodio
82 of 162
Duración
1H 21min
Idioma
Inglés
Formato
Categoría
No ficción

Greg and Rain from the Oxide team joined Bryan and Adam to talk about powerful methods of verifying software: formal methods in the form of TLA+ and property-based testing in the form of the proptest Rust crate. If you care about making software right, don't miss it!

In addition to Bryan Cantrill and Adam Leventhal, we were joined by Oxide colleagues Greg Colombo and Rain Paharia. Some of the topics we hit on, in the order that we hit them:

Distributed SagasSteno • -- Oxide's implementation of distributed sagas Learn TLA+Hillel Wayne talksHillel Wayne on Alloy 6Quickcheck Paper • (2000) Proptest docs • Rain's example code use proptest::prelude::*; use proptest::collection::vec; proptest! { #[test] fn proptest_my_sort_pairs(input in vec(any::(), 0..128)) { let output = my_sort(input); for window in output.windows(2) { assert!(window[0] <= window[1]); } }

#[test] fn proptest_my_sort_against_bubble_sort(input in vec(any::(), 0..128)) { let output = my_sort(input.clone()); let bubble_output = bubble_sort(input); assert_eq!(output, bubble_output); } // These proptests implicitly check that my_sort doesn't crash. }buf-list crateguppy crate • ... and stay tuned for an upcoming episode revisiting • async/await in Rust

If we got something wrong or missed something, please file a PR! Our next show will likely be on Monday at 5p Pacific Time on our Discord server; stay tuned to our Mastodon feeds for details, or subscribe to this calendar. We'd love to have you join us, as we always love to hear from new speakers!


Escucha y lee

Descubre un mundo infinito de historias

  • Lee y escucha todo lo que quieras
  • Más de 1 millón de títulos
  • Títulos exclusivos + Storytel Originals
  • Precio regular: CLP 7,990 al mes
  • Cancela cuando quieras
Suscríbete ahora
Copy of Device Banner Block 894x1036 3
Cover for Software Verificationpalooza

Otros podcasts que te pueden gustar...