()
| 770 | |
| 771 | #[test] |
| 772 | fn test_static_infer() -> Result<()> { |
| 773 | crate::config::Config::init_test("c-ares"); |
| 774 | let deopt = Deopt::new("c-ares".to_string())?; |
| 775 | let mut constraints = APIConstraints::new(); |
| 776 | |
| 777 | let programs = crate::deopt::utils::read_sort_dir(&deopt.get_library_succ_seed_dir()?)?; |
| 778 | |
| 779 | for program in programs { |
| 780 | println!("program: {program:?}"); |
| 781 | infer_constraints(&program, &deopt, &mut constraints)?; |
| 782 | } |
| 783 | let refined = refine_constraints(constraints); |
| 784 | println!("{refined:#?}"); |
| 785 | Ok(()) |
| 786 | } |
nothing calls this directly
no test coverage detected