Files
clang-p2996/llvm/utils/lit/tests/Inputs/shtest-output-printing/lit.cfg
Daniel Dunbar 591838d1d3 [lit] Improve readability of failing scripts.
- This only applies to scripts executed by the _internal_ shell script
   interpreter.

 - This patch reworks the log to look more like a shell transcript, and be less
   verbose (but in the interest of calling attention to the important parts).

Here is an example of the new format, for commands with/without failures and
with/without output:
```
$ true
$ echo hi
hi

$ false
note: command had no output on stdout or stderr
error: command failed with exit status 1

```

llvm-svn: 271610
2016-06-02 23:49:42 +00:00

5 lines
149 B
INI

import lit.formats
config.name = 'shtest-output-printing'
config.suffixes = ['.txt']
config.test_format = lit.formats.ShTest(execute_external=False)