diff options
author | RajithaY <rajithax.yerrumsetty@intel.com> | 2017-03-20 15:15:28 +0530 |
---|---|---|
committer | Rajitha Yerrumchetty <rajithax.yerrumsetty@intel.com> | 2017-03-20 16:50:14 +0000 |
commit | c3893858bf09f4cca8850fb9b0f59f1a050f6b38 (patch) | |
tree | 8d3a3b2e093ee8d7ef7cee56080caefa77783611 /ci/envs/utils.sh | |
parent | d946629e1c1851dd12fd2f2664e9a12fc1b6c9bc (diff) |
This patch contains the code changes to check the commit id in
the apex.conf file is valid or not and to update the
stress_isolcpus to 22-43 on console
Change-Id: I6a2e78f51f2371042bcbfa4f8c3e31b316938528
Signed-off-by:RajithaY<rajithax.yerrumsetty@intel.com>
Diffstat (limited to 'ci/envs/utils.sh')
-rwxr-xr-x | ci/envs/utils.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/envs/utils.sh b/ci/envs/utils.sh index 5e4f1c470..c2c0f85a6 100755 --- a/ci/envs/utils.sh +++ b/ci/envs/utils.sh @@ -43,7 +43,7 @@ function getQemuVersion { function checkRPMNames { rpm_dir="/root/workspace/rpm" if [ -d "$WORKSPACE" ];then - cd $WORKSPACE/build_output 2>/dev/null;RPMCOUNT=`ls kvmfornfv-* | wc -l` + cd $WORKSPACE/build_output 2>/dev/null;RPMCOUNT=`ls kvmfornfv-* 2>/dev/null | wc -l` if [ $RPMCOUNT -ne 0 ];then echo "Testcases are not executed for apex_build" exit 0 |