Blame tests/p_procinfo/5-test_procinfo.sh
|
Steve Barnes |
464547 |
#!/bin/bash
|
|
root |
2bfd68 |
# Author: Steve Barnes (steve@echo.id.au)
|
|
Athmane Madjoudj |
3a45f5 |
# Athmane Madjoudj <athmanem@gmail.com>
|
|
Christoph Galuschka |
5e4726 |
# Christoph Galuschka <christoph.galuschka@chello.at>
|
|
Christoph Galuschka |
5e4726 |
|
|
Christoph Galuschka |
5e4726 |
t_Log "Running $0 - checking procinfo runs and returns non-zero exit status."
|
|
Steve Barnes |
464547 |
|
|
Athmane Madjoudj |
3a45f5 |
if (t_GetPkgRel basesystem | grep -q el6)
|
|
Athmane Madjoudj |
3a45f5 |
then
|
|
Christoph Galuschka |
5e4726 |
t_Log "It seems to be a CentOS 6.x system, this test will be disabled"
|
|
Athmane Madjoudj |
3a45f5 |
exit 0
|
|
Athmane Madjoudj |
3a45f5 |
else
|
|
Athmane Madjoudj |
03a2a8 |
if [ $SKIP_QA_HARNESS ]; then
|
|
Christoph Galuschka |
5e4726 |
t_Log "Skip, seems to fail on CI ..."
|
|
Athmane Madjoudj |
03a2a8 |
else
|
|
Steve Barnes |
464547 |
|
|
Athmane Madjoudj |
03a2a8 |
PROCINFO=`which procinfo`
|
|
Steve Barnes |
464547 |
|
|
Athmane Madjoudj |
03a2a8 |
$PROCINFO &>/dev/null
|
|
Athmane Madjoudj |
0e57f0 |
|
|
Athmane Madjoudj |
03a2a8 |
t_CheckExitStatus $?
|
|
Athmane Madjoudj |
03a2a8 |
fi
|
|
Athmane Madjoudj |
3a45f5 |
fi
|