mirror of
https://github.com/zeek/zeek.git
synced 2025-10-09 10:08:20 +00:00
Merge remote-tracking branch 'origin/topic/jsiwek/gh-926-ternary-type-checking'
* origin/topic/jsiwek/gh-926-ternary-type-checking: GH-926: Improve type-checking for ternary conditional operator Fixes GH-926
This commit is contained in:
commit
b8a47de26c
10 changed files with 153 additions and 40 deletions
|
@ -39,8 +39,8 @@ function test_cmd(label: string, cmd: Exec::Command)
|
|||
|
||||
print fmt("%s - exit: %s, signal: %s, stdout: %s, stderr: %s, files: %s",
|
||||
label, result$exit_code, result$signal_exit,
|
||||
result?$stdout ? result$stdout : "",
|
||||
result?$stderr ? result$stderr : "",
|
||||
result?$stdout ? cat(result$stdout) : "",
|
||||
result?$stderr ? cat(result$stderr) : "",
|
||||
file_content);
|
||||
|
||||
check_exit_condition();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue