runtime-diff 0.1.1

A simple tool to compare runtime execution of different executables by analyzing targeted print statements.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#[macro_export]
macro_rules! breadcumb {
    ($($arg:tt)*) => {
        println!("BREADCUMB: {}", format_args!($($arg)*));
    };
}

#[macro_export]
macro_rules! runtime_check {
    ($($arg:tt)*) => {
        println!("RUNTIME CHECK: {}", format_args!($($arg)*));
    };
    () => {
    };
}