File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -178,6 +178,12 @@ func (t *gcsFuseCSIGCSFuseIntegrationTestSuite) DefineTests(driver storageframew
178178 // qualifies the non-managed driver to run all the tests.
179179 skipTestOrProceedWithBranch := func (gcsfuseVersionStr , testName string ) string {
180180 v , branch := utils .GCSFuseBranch (gcsfuseVersionStr )
181+
182+ // Rename_symlink tests are in separat test package only of v2.11.4 for now
183+ if testName == testNameRenameSymlink && (v .AtLeast (version .MustParseSemantic ("v3.0.0-gke.0" )) || v .LessThan (version .MustParseSemantic ("v2.11.4-gke.0" )) || branch == utils .MasterBranchName ) {
184+ e2eskipper .Skipf ("skip gcsfuse integration rename_symlink test on gcsfuse version %v" , v .String ())
185+ }
186+
181187 if branch == utils .MasterBranchName {
182188 return branch
183189 }
@@ -225,11 +231,6 @@ func (t *gcsFuseCSIGCSFuseIntegrationTestSuite) DefineTests(driver storageframew
225231 e2eskipper .Skipf ("skip gcsfuse integration test %v for gcsfuse version %v" , testNameBufferedReads , v .String ())
226232 }
227233
228- // Rename_symlink tests are in separat test package only of v2.11.4 for now
229- if testName == testNameRenameSymlink && (v .AtLeast (version .MustParseSemantic ("v3.0.0-gke.0" )) || v .LessThan (version .MustParseSemantic ("v2.11.4-gke.0" )) || branch == utils .MasterBranchName ) {
230- e2eskipper .Skipf ("skip gcsfuse integration rename_symlink test on gcsfuse version %v" , v .String ())
231- }
232-
233234 return branch
234235 }
235236
You can’t perform that action at this time.
0 commit comments