(t *testing.T)
| 39 | } |
| 40 | } |
| 41 | |
| 42 | func TestBashEmptyCommand(t *testing.T) { |
| 43 | if Bash(context.Background(), " ", time.Second) != "(empty command)" { |
| 44 | t.Fatal("empty command handling wrong") |
| 45 | } |
| 46 | } |
| 47 | |
| 48 | // TestBashBoundsRunawayOutput: a firehose command must not grow an unbounded |