(t *testing.T)
| 9 | ) |
| 10 | |
| 11 | func TestExampleHelp(t *testing.T) { |
| 12 | defer os.RemoveAll("./_out") |
| 13 | |
| 14 | cmd := exec.Command("go", "build", "-o", "_out/help", "./examples/help") |
| 15 | if err := cmd.Run(); err != nil { |
| 16 | t.Fatalf("error: go build ./examples/help: %v", err) |
| 17 | } |
| 18 | } |
| 19 | |
| 20 | func TestE2EFullTopology(t *testing.T) { |
| 21 | defer os.RemoveAll("./_out") |