@@ -34,7 +34,7 @@ var _ = Describe("Running Specs", func() {
34
34
35
35
Ω (output ).Should (ContainSubstring ("Running Suite: Passing_ginkgo_tests Suite" ))
36
36
Ω (output ).Should (ContainSubstring (strings .Repeat (denoter , 4 )))
37
- Ω (output ).Should (ContainSubstring ("SUCCESS! -- 4 Passed" ))
37
+ Ω (output ).Should (ContainSubstring ("SUCCESS! -- 5 Passed" ))
38
38
Ω (output ).Should (ContainSubstring ("Test Suite Passed" ))
39
39
})
40
40
})
@@ -51,7 +51,7 @@ var _ = Describe("Running Specs", func() {
51
51
52
52
Ω (output ).Should (ContainSubstring ("Running Suite: Passing_ginkgo_tests Suite" ))
53
53
Ω (output ).Should (ContainSubstring (strings .Repeat (denoter , 4 )))
54
- Ω (output ).Should (ContainSubstring ("SUCCESS! -- 4 Passed" ))
54
+ Ω (output ).Should (ContainSubstring ("SUCCESS! -- 5 Passed" ))
55
55
Ω (output ).Should (ContainSubstring ("Test Suite Passed" ))
56
56
})
57
57
})
@@ -268,7 +268,7 @@ var _ = Describe("Running Specs", func() {
268
268
Eventually (session ).Should (gexec .Exit (0 ))
269
269
output := string (session .Out .Contents ())
270
270
271
- Ω (output ).Should (MatchRegexp (`\[\d+\] Passing_ginkgo_tests Suite - 4/4 specs - 2 procs [%s]{4 } SUCCESS! \d+(\.\d+)?[muµ]s` , regexp .QuoteMeta (denoter )))
271
+ Ω (output ).Should (MatchRegexp (`\[\d+\] Passing_ginkgo_tests Suite - 5/5 specs - 2 procs [%s]{5 } SUCCESS! \d+(\.\d+)?[muµ]s` , regexp .QuoteMeta (denoter )))
272
272
Ω (output ).Should (ContainSubstring ("Test Suite Passed" ))
273
273
})
274
274
})
@@ -286,7 +286,7 @@ var _ = Describe("Running Specs", func() {
286
286
if nodes > 4 {
287
287
nodes = nodes - 1
288
288
}
289
- Ω (output ).Should (MatchRegexp (`\[\d+\] Passing_ginkgo_tests Suite - 4/4 specs - %d procs [%s]{4 } SUCCESS! \d+(\.\d+)?[muµ]?s` , nodes , regexp .QuoteMeta (denoter )))
289
+ Ω (output ).Should (MatchRegexp (`\[\d+\] Passing_ginkgo_tests Suite - 5/5 specs - %d procs [%s]{5 } SUCCESS! \d+(\.\d+)?[muµ]?s` , nodes , regexp .QuoteMeta (denoter )))
290
290
Ω (output ).Should (ContainSubstring ("Test Suite Passed" ))
291
291
})
292
292
})
@@ -341,7 +341,7 @@ var _ = Describe("Running Specs", func() {
341
341
outputLines := strings .Split (output , "\n " )
342
342
Ω (outputLines [0 ]).Should (MatchRegexp (`\[\d+\] More_ginkgo_tests Suite - 2/2 specs [%s]{2} SUCCESS! \d+(\.\d+)?[muµ]s PASS` , regexp .QuoteMeta (denoter )))
343
343
Ω (outputLines [1 ]).Should (ContainSubstring ("Skipping ./no_tagged_tests (no test files)" ))
344
- Ω (outputLines [2 ]).Should (MatchRegexp (`\[\d+\] Passing_ginkgo_tests Suite - 4/4 specs [%s]{4 } SUCCESS! \d+(\.\d+)?[muµ]s PASS` , regexp .QuoteMeta (denoter )))
344
+ Ω (outputLines [2 ]).Should (MatchRegexp (`\[\d+\] Passing_ginkgo_tests Suite - 5/5 specs [%s]{5 } SUCCESS! \d+(\.\d+)?[muµ]s PASS` , regexp .QuoteMeta (denoter )))
345
345
Ω (output ).Should (ContainSubstring ("Test Suite Passed" ))
346
346
})
347
347
})
@@ -354,7 +354,7 @@ var _ = Describe("Running Specs", func() {
354
354
outputLines := strings .Split (output , "\n " )
355
355
Ω (outputLines [0 ]).Should (MatchRegexp (`\[\d+\] More_ginkgo_tests Suite - 2/2 specs [%s]{2} SUCCESS! \d+(\.\d+)?[muµ]s PASS` , regexp .QuoteMeta (denoter )))
356
356
Ω (outputLines [1 ]).Should (ContainSubstring ("Skipping ./no_tagged_tests (no test files)" ))
357
- Ω (outputLines [2 ]).Should (MatchRegexp (`\[\d+\] Passing_ginkgo_tests Suite - 4/4 specs [%s]{4 } SUCCESS! \d+(\.\d+)?[muµ]s PASS` , regexp .QuoteMeta (denoter )))
357
+ Ω (outputLines [2 ]).Should (MatchRegexp (`\[\d+\] Passing_ginkgo_tests Suite - 5/5 specs [%s]{5 } SUCCESS! \d+(\.\d+)?[muµ]s PASS` , regexp .QuoteMeta (denoter )))
358
358
Ω (output ).Should (ContainSubstring ("Test Suite Passed" ))
359
359
})
360
360
})
@@ -372,7 +372,7 @@ var _ = Describe("Running Specs", func() {
372
372
373
373
outputLines := strings .Split (output , "\n " )
374
374
Ω (outputLines [0 ]).Should (ContainSubstring ("Skipping ./no_tagged_tests (no test files)" ))
375
- Ω (outputLines [1 ]).Should (MatchRegexp (`\[\d+\] Passing_ginkgo_tests Suite - 4/4 specs [%s]{4 } SUCCESS! \d+(\.\d+)?[muµ]s PASS` , regexp .QuoteMeta (denoter )))
375
+ Ω (outputLines [1 ]).Should (MatchRegexp (`\[\d+\] Passing_ginkgo_tests Suite - 5/5 specs [%s]{5 } SUCCESS! \d+(\.\d+)?[muµ]s PASS` , regexp .QuoteMeta (denoter )))
376
376
Ω (outputLines [2 ]).Should (MatchRegexp (`\[\d+\] Failing_ginkgo_tests Suite - 2/2 specs` ))
377
377
Ω (output ).Should (ContainSubstring (fmt .Sprintf ("%s [FAILED]" , denoter )))
378
378
Ω (output ).ShouldNot (ContainSubstring ("More_ginkgo_tests Suite" ))
@@ -392,7 +392,7 @@ var _ = Describe("Running Specs", func() {
392
392
393
393
outputLines := strings .Split (output , "\n " )
394
394
Ω (outputLines [0 ]).Should (ContainSubstring ("Skipping ./no_tagged_tests (no test files)" ))
395
- Ω (outputLines [1 ]).Should (MatchRegexp (`\[\d+\] Passing_ginkgo_tests Suite - 4/4 specs [%s]{4 } SUCCESS! \d+(\.\d+)?[muµ]s PASS` , regexp .QuoteMeta (denoter )))
395
+ Ω (outputLines [1 ]).Should (MatchRegexp (`\[\d+\] Passing_ginkgo_tests Suite - 5/5 specs [%s]{5 } SUCCESS! \d+(\.\d+)?[muµ]s PASS` , regexp .QuoteMeta (denoter )))
396
396
Ω (outputLines [2 ]).Should (ContainSubstring ("Failed to compile does_not_compile:" ))
397
397
Ω (output ).ShouldNot (ContainSubstring ("More_ginkgo_tests Suite" ))
398
398
Ω (output ).Should (ContainSubstring ("Test Suite Failed" ))
@@ -412,7 +412,7 @@ var _ = Describe("Running Specs", func() {
412
412
413
413
outputLines := strings .Split (output , "\n " )
414
414
Ω (outputLines [0 ]).Should (ContainSubstring ("Skipping ./no_tagged_tests (no test files)" ))
415
- Ω (outputLines [1 ]).Should (MatchRegexp (`\[\d+\] Passing_ginkgo_tests Suite - 4/4 specs [%s]{4 } SUCCESS! \d+(\.\d+)?[muµ]s PASS` , regexp .QuoteMeta (denoter )))
415
+ Ω (outputLines [1 ]).Should (MatchRegexp (`\[\d+\] Passing_ginkgo_tests Suite - 5/5 specs [%s]{5 } SUCCESS! \d+(\.\d+)?[muµ]s PASS` , regexp .QuoteMeta (denoter )))
416
416
Ω (outputLines [2 ]).Should (ContainSubstring ("Failed to compile does_not_compile:" ))
417
417
Ω (output ).Should (MatchRegexp (`\[\d+\] Failing_ginkgo_tests Suite - 2/2 specs` ))
418
418
Ω (output ).Should (ContainSubstring (fmt .Sprintf ("%s [FAILED]" , denoter )))
0 commit comments