diff --git a/test_helpers/main.go b/test_helpers/main.go index c80683d94..71e65b7a9 100644 --- a/test_helpers/main.go +++ b/test_helpers/main.go @@ -237,6 +237,16 @@ func IsTarantoolVersionLess(majorMin uint64, minorMin uint64, patchMin uint64) ( out, err := exec.Command(getTarantoolExec(), "--version").Output() + // if err != nil { + // return true, err + // } + + // // It seems that is the --version output sometimes goes to Stderr instead of Stdout. + // // trying to get version again + // if len(out) == 0 { + // out, err = exec.Command(getTarantoolExec(), "--version").Output() + // } + if err != nil { return true, err }