File tree Expand file tree Collapse file tree 3 files changed +12
-2
lines changed
test/tools/git/blame-in-diff Expand file tree Collapse file tree 3 files changed +12
-2
lines changed Original file line number Diff line number Diff line change 11name : Makefile CI
22on :
33 push :
4- branches : [ "master" ]
4+ branches : [ "master", "fix-test" ]
55 pull_request :
66 branches : [ "master" ]
77jobs :
Original file line number Diff line number Diff line change @@ -16,8 +16,17 @@ define-command run %{
1616 # We've jumped to the new version of line 2. Move to the old
1717 # version so we can annotate the old version of the file.
1818 execute-keys k
19- git blame
19+ echo -to-file /dev/stderr "running git blame"
20+ try %{ git blame } catch %{
21+ echo -to-file /dev/stderr "git blame error"
22+ eval -buffer '*debug*' write /dev/stderr
23+ echo -to-file fifo
24+ fail "oh no"
25+ }
26+
27+ eval -buffer '*debug*' write /dev/stderr
2028 hook -once buffer BufCloseFifo .* %{
29+ echo "fifo closed" > /dev/stderr
2130 execute-keys -client client0 x
2231 # Wait for a redraw before reporting completion.
2332 hook -once buffer NormalIdle .* %{
Original file line number Diff line number Diff line change 11mkfifo fifo 2>/dev/null
22cat fifo
3+ echo "fifo cat'ed"
34# We should have jumped to the old version of line 2, assert on kak_selection.
You can’t perform that action at this time.
0 commit comments