test: Fix a few instances of errant cd
Don't change the directory of the script if at all possible. Change-Id: I5e20784694cb61fac2cf148628de566361e2673e Signed-off-by: Ben Walker <benjamin.walker@intel.com> Reviewed-on: https://review.gerrithub.io/c/spdk/spdk/+/472650 Reviewed-by: yidong0635 <dongx.yi@intel.com> Reviewed-by: Paul Luse <paul.e.luse@intel.com> Reviewed-by: Jim Harris <james.r.harris@intel.com> Reviewed-by: Shuhei Matsumoto <shuhei.matsumoto.xt@hitachi.com> Tested-by: SPDK CI Jenkins <sys_sgci@intel.com>
This commit is contained in:
parent
9c64110700
commit
0b9931516d
@ -55,30 +55,22 @@ echo "tmpdir=$tmpdir"
|
||||
tar -C "$tmpdir" -xf $spdk_tarball
|
||||
|
||||
if [ -z "$WITH_DPDK_DIR" ]; then
|
||||
cd dpdk
|
||||
git archive HEAD^{tree} --prefix=dpdk/ -o ../${dpdk_tarball}
|
||||
cd ..
|
||||
cd dpdk && git archive HEAD^{tree} --prefix=dpdk/ -o ../${dpdk_tarball}
|
||||
tar -C "$tmpdir/${spdk_pv}" -xf $dpdk_tarball
|
||||
fi
|
||||
|
||||
if [ -d "intel-ipsec-mb" ]; then
|
||||
cd intel-ipsec-mb
|
||||
git archive HEAD^{tree} --prefix=intel-ipsec-mb/ -o ../${ipsec_tarball}
|
||||
cd ..
|
||||
cd intel-ipsec-mb && git archive HEAD^{tree} --prefix=intel-ipsec-mb/ -o ../${ipsec_tarball}
|
||||
tar -C "$tmpdir/${spdk_pv}" -xf $ipsec_tarball
|
||||
fi
|
||||
|
||||
if [ -d "isa-l" ]; then
|
||||
cd isa-l
|
||||
git archive HEAD^{tree} --prefix=isa-l/ -o ../${isal_tarball}
|
||||
cd ..
|
||||
cd isa-l && git archive HEAD^{tree} --prefix=isa-l/ -o ../${isal_tarball}
|
||||
tar -C "$tmpdir/${spdk_pv}" -xf $isal_tarball
|
||||
fi
|
||||
|
||||
if [ -d "ocf" ]; then
|
||||
cd ocf
|
||||
git archive HEAD^{tree} --prefix=ocf/ -o ../${ocf_tarball}
|
||||
cd ..
|
||||
cd ocf && git archive HEAD^{tree} --prefix=ocf/ -o ../${ocf_tarball}
|
||||
tar -C "$tmpdir/${spdk_pv}" -xf $ocf_tarball
|
||||
fi
|
||||
|
||||
|
@ -188,9 +188,7 @@ if [ "$cov_avail" = "yes" ]; then
|
||||
rm -f $UT_COVERAGE/ut_cov_base.info $UT_COVERAGE/ut_cov_test.info
|
||||
genhtml $UT_COVERAGE/ut_cov_unit.info --output-directory $UT_COVERAGE
|
||||
# git -C option not used for compatibility reasons
|
||||
cd $rootdir
|
||||
git clean -f "*.gcda"
|
||||
cd -
|
||||
cd $rootdir && git clean -f "*.gcda"
|
||||
fi
|
||||
|
||||
set +x
|
||||
|
Loading…
Reference in New Issue
Block a user