1234567891011121314151617181920212223 |
- [[cmd]]
- name = "Running with ‘out-of-range.invalid’ displays a protocol error"
- shell = "dog --colour=always ${MADNS_ARGS:[email protected]:5301 --tcp} A out-of-range.invalid"
- stdout = { empty = true }
- stderr = { string = "Error [protocol]: Malformed packet: insufficient data" }
- status = 1
- tags = [ "protocol", "madns" ]
- [[cmd]]
- name = "Running with ‘recursive-1.invalid’ displays a recursion error"
- shell = "dog --colour=always ${MADNS_ARGS:[email protected]:5301 --tcp} A recursive-1.invalid"
- stdout = { empty = true }
- stderr = { string = "Error [protocol]: Malformed packet: too much recursion: [37]" }
- status = 1
- tags = [ "protocol", "madns" ]
- [[cmd]]
- name = "Running with ‘recursive-2.invalid’ displays a recursion error"
- shell = "dog --colour=always ${MADNS_ARGS:[email protected]:5301 --tcp} A recursive-2.invalid"
- stdout = { empty = true }
- stderr = { string = "Error [protocol]: Malformed packet: too much recursion: [53, 37]" }
- status = 1
- tags = [ "protocol", "madns" ]
|