Blame tests/p_ruby/30-irb-version-test.sh

Christoph Galuschka 37e507
#!/bin/sh
Christoph Galuschka 37e507
# Author: Nikhil Lanjewar <nikhil@lanjewar.com>
Christoph Galuschka 37e507
# Author: Sahil Muthoo <sahilm@thoughtworks.com>
Christoph Galuschka 37e507
# Author: Sahil Aggarwal <sahilagg@gmail.com>
Christoph Galuschka 37e507
# Author: Saager Mhatre <saager.mhatre@gmail.com>
Christoph Galuschka 37e507
#	  Christoph Galuschka <christoph.galuschka@chello.at>
Christoph Galuschka 37e507
Christoph Galuschka 37e507
t_Log "Running $0 - Check version of irb."
Christoph Galuschka 37e507
Christoph Galuschka 37e507
#allready prepared just in case versions should change between C5 and C6
f49232
if [ "$centos_ver" = "9" ] ; then
f49232
  irb -v | grep -q 'irb'
f49232
  ret_val=$?
f49232
elif [ "$centos_ver" = "7" -o "$centos_ver" = "8" ] ; then
a4f4f3
  irb -v | grep -q '0.9.6'
Christoph Galuschka 37e507
  ret_val=$?
Christoph Galuschka 37e507
else
Christoph Galuschka 37e507
  irb -v | grep -q '0.9.5'
Christoph Galuschka 37e507
  ret_val=$?
Christoph Galuschka 37e507
fi
Christoph Galuschka 37e507
Christoph Galuschka 37e507
t_CheckExitStatus $ret_val