()
| 815 | } |
| 816 | |
| 817 | func getClusterPrefix() string { |
| 818 | if len(*useExisting) > 0 { |
| 819 | return *useExisting |
| 820 | } |
| 821 | id := atomic.AddInt32(&testId, 1) |
| 822 | return fmt.Sprintf("%s%03d-%d", getGlobalPrefix(), procId, id) |
| 823 | } |
| 824 | |
| 825 | // for tests that require custom docker-compose file (located in test directory) |
| 826 | func runCustomClusterTest(ctx context.Context, pkg string, wg *sync.WaitGroup, xmlFile string) error { |
no test coverage detected