Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions test_helpers/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down
Loading