blob: 6d6856c776a937c4fc6426f5d968a0b265e47a1f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
! Parallel -V output has some mixing [bug karen]
Need to audit that all diagnostics is issued atomically via diag_record.
- Save diff output for {stdout,stderr}.diff [feature karen]
Now we have diff output first, then the error. This often messes up emacs
error navigation. Also, not atomic.
So instead we should save the output to a .diff file (could be useful for
later examination), print the error (including an info line with where is
the diff), and then (a fragment of) the diff. Theoretically, the .diff
can be large, so probably makes sense to limit it to a few KB?
- Print signal/core dump like shell/make [feature karen]
Somehow bash and GNU make can detect which signal caused abnormal
termination and print it as well as whether core was dumped, for example:
Aborted (core dumped)
Segmentation fault
Would be nice to be just as smart plus, in case of a core, also print where
it is (normally terminated executable's working directory).
|