haybale 0.7.2

Symbolic execution of LLVM IR, written in Rust
Documentation
use haybale::solver_utils::PossibleSolutions;
use haybale::*;

fn init_logging() {
    // capture log messages with test harness
    let _ = env_logger::builder().is_test(true).try_init();
}

fn get_project() -> Project {
    let modname = "tests/bcfiles/functionptr.bc";
    Project::from_bc_path(modname)
        .unwrap_or_else(|e| panic!("Failed to parse module {:?}: {}", modname, e))
}

#[test]
fn call_through_function_ptr() {
    let funcname = "fptr_driver";
    init_logging();
    let proj = get_project();
    assert_eq!(
        get_possible_return_values_of_func(funcname, &proj, Config::default(), None, None, 5),
        PossibleSolutions::exactly_one(ReturnValue::Return(22)),
    );
}

#[test]
fn call_through_function_ptr_struct() {
    let funcname = "struct_driver";
    let proj = get_project();
    assert_eq!(
        get_possible_return_values_of_func(funcname, &proj, Config::default(), None, None, 5),
        PossibleSolutions::exactly_one(ReturnValue::Return(15)),
    );
}