#debugging #test #rr

bin+lib cargo-rr

A light wrapper around rr, the time-travelling debugger

6 releases

0.3.0 Jan 4, 2023
0.2.0 Jan 19, 2022
0.1.3 Apr 23, 2021

#981 in Development tools

MIT license

21KB
478 lines

cargo-rr

Crates.io MIT Licensed

A light wrapper around rr, the time-travelling debugger.

Do you find yourself running the same test over and over in the debugger, trying to figure out how the code got in a bad state? We have a tool for you! Easy to install and setup, it will record an execution trace, and that gives magical new powers to gdb. Step backwards, run backwards, see where variables changed their value or when a function was last called on an object (using conditional breakpoints). (source)

Example

Suppose we ran a test my_test and got a failure. We first re-run the test under rr to record the entire execution (including everything else on your system the test interacts with).

> cargo rr test my_test

thread 'main' panicked at 'assertion failed: `(left == right)`
  left: `1`,
 right: `2`', tests/tests.rs:100

test result: FAILED. 0 passed; 1 failed; 0 ignored; 0 measured; 2 filtered out; finished in 0.06s

Let's replay the recording.

> cargo rr replay

(rr) continue

thread 'main' panicked at 'assertion failed: `(left == right)`
  left: `1`,
 right: `42`', tests/tests.rs:100

test result: FAILED. 0 passed; 1 failed; 0 ignored; 0 measured; 2 filtered out; finished in 0.06s

We'll go backwards until we return to the failed assertion so we can have a look at a and b.

(rr) break tests/tests.rs:100
(rr) reverse-continue
Continuing.

Breakpoint 1, tests::main () at tests/tests.rs:100
100         assert_eq!(a, b);

(rr) print a
$1 = 1

(rr) print b
$2 = 42

I wonder where a is set to 1?

(rr) watch -l a
(rr) reverse-continue

Old value = 1
New value = -1992923200
0x000055dcac485ed9 in tests::main () at tests/tests.rs:30
30          let a = some_calculation();

Note that since we're going in reverse the old and new values are backwards. -1992923200 is whatever used to be at the address 0x000055dcac485ed9 before it was used for a.

Installation

cargo-rr is a custom cargo subcommand. It can be installed by installing the cargo-rr package from crates.io: just run

cargo install cargo-rr

in a terminal. After installing you can run cargo rr in the terminal to access cargo-rr.

Usage

Run cargo rr test or cargo rr run with any options you'd normally give to cargo test or cargo run. For example, you might run cargo rr test --test my_integration_test some_filter.

Once you've made a recording you can replay the last recording in a debugger with cargo rr replay.

Advanced

Use the options --rr-opts=".." and --gdb-opts="..." to pass custom options to rr and gdb, respectively. You are responsible for ensuring the options you pass don't conflict with the options we pass. You can see the options we pass in the source code. We don't promise any stability here, but you probably won't run into issues.

Run cargo rr help to see the full usage.

Dependencies

~16–27MB
~375K SLoC