@@ -201,6 +201,27 @@ func (o *GinkgoRunSuiteOptions) Run(suite *TestSuite, junitSuiteName string, mon
201
201
logrus .Infof ("Using built-in tests only due to OPENSHIFT_SKIP_EXTERNAL_TESTS being set" )
202
202
}
203
203
204
+ // Temporarily check for the presence of the [Skipped:xyz] annotation in the test names, once this synthetic test
205
+ // begins to pass we can remove the annotation logic
206
+ var annotatedSkipped []string
207
+ for _ , t := range externalTestCases {
208
+ if strings .Contains (t .name , "[Skipped" ) {
209
+ annotatedSkipped = append (annotatedSkipped , t .name )
210
+ }
211
+ }
212
+ var skippedAnnotationSyntheticTestResults []* junitapi.JUnitTestCase
213
+ skippedAnnotationSyntheticTestResult := junitapi.JUnitTestCase {
214
+ Name : "[sig-trt] Skipped annotations present" ,
215
+ }
216
+ if len (annotatedSkipped ) > 0 {
217
+ skippedAnnotationSyntheticTestResult .FailureOutput = & junitapi.FailureOutput {
218
+ Message : fmt .Sprintf ("Skipped Annotations present in tests: %s" , strings .Join (annotatedSkipped , ", " )),
219
+ }
220
+ }
221
+ skippedAnnotationSyntheticTestResults = append (skippedAnnotationSyntheticTestResults , & skippedAnnotationSyntheticTestResult )
222
+ // If this fails, this additional run will make it flake
223
+ skippedAnnotationSyntheticTestResults = append (skippedAnnotationSyntheticTestResults , & junitapi.JUnitTestCase {Name : skippedAnnotationSyntheticTestResult .Name })
224
+
204
225
// this ensures the tests are always run in random order to avoid
205
226
// any intra-tests dependencies
206
227
suiteConfig , _ := ginkgo .GinkgoConfiguration ()
@@ -512,6 +533,7 @@ func (o *GinkgoRunSuiteOptions) Run(suite *TestSuite, junitSuiteName string, mon
512
533
var syntheticTestResults []* junitapi.JUnitTestCase
513
534
var syntheticFailure bool
514
535
syntheticTestResults = append (syntheticTestResults , stableClusterTestResults ... )
536
+ syntheticTestResults = append (syntheticTestResults , skippedAnnotationSyntheticTestResults ... )
515
537
516
538
timeSuffix := fmt .Sprintf ("_%s" , start .UTC ().Format ("20060102-150405" ))
517
539
0 commit comments