File: debug-logging.toml

package info (click to toggle)
rust-exa 0.10.1-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,504 kB
  • sloc: sh: 57; perl: 29; makefile: 20
file content (17 lines) | stat: -rw-r--r-- 479 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[[cmd]]
name = "‘EXA_DEBUG=1 exa’ produces debug output"
shell = "exa --long /testcases"
environment = { EXA_DEBUG = "1" }
stdout = { empty = false }
stderr = { string = "DEBUG" }
status = 0
tags = [ 'debug', 'env', 'long' ]

[[cmd]]
name = "‘EXA_DEBUG=trace exa’ produces trace-level debug output"
shell = "exa --long /testcases"
environment = { EXA_DEBUG = "trace" }
stdout = { empty = false }
stderr = { string = "TRACE" }
status = 0
tags = [ 'debug', 'env', 'long' ]