Skip to content

Commit b2d83e2

Browse files
committed
test: add unit test which causes addition overflow in type size computation
This commit will fail when put before either of the previous two commits.
1 parent b1f3396 commit b2d83e2

File tree

1 file changed

+16
-1
lines changed

1 file changed

+16
-1
lines changed

src/bit_machine/mod.rs

+16-1
Original file line numberDiff line numberDiff line change
@@ -623,7 +623,6 @@ impl From<JetFailed> for ExecutionError {
623623

624624
#[cfg(test)]
625625
mod tests {
626-
#[cfg(feature = "elements")]
627626
use super::*;
628627

629628
#[cfg(feature = "elements")]
@@ -710,4 +709,20 @@ mod tests {
710709
);
711710
assert_eq!(res.unwrap(), Value::unit());
712711
}
712+
713+
#[test]
714+
fn crash_regression2() {
715+
use crate::node::{CoreConstructible as _, JetConstructible as _};
716+
717+
type Node = Arc<crate::ConstructNode<crate::jet::Core>>;
718+
719+
let mut bomb = Node::jet(
720+
&crate::types::Context::new(),
721+
crate::jet::Core::Ch8, // arbitrary jet with nonzero output size
722+
);
723+
for _ in 0..100 {
724+
bomb = Node::pair(&bomb, &bomb).unwrap();
725+
}
726+
let _ = bomb.finalize_pruned(&());
727+
}
713728
}

0 commit comments

Comments
 (0)