Commit 08d5d847 authored by Seth Howell's avatar Seth Howell Committed by Tomasz Zawadzki
Browse files

test: fix SC2103 errors on older shellcheck.



Shellcheck version 0.6.0 reports all instances where we cd .. or cd - as
instances of SC2103. The version we are using on the test pool must be
newer, because we don't get the same errors, but for people running
check_format locally, it can make it difficult to parse the output.

Change-Id: I09f81a83c6f37480f13c36eb622e500364a1c437
Signed-off-by: default avatarSeth Howell <seth.howell@intel.com>
Reviewed-on: https://review.gerrithub.io/c/spdk/spdk/+/474150


Tested-by: default avatarSPDK CI Jenkins <sys_sgci@intel.com>
Reviewed-by: default avatarShuhei Matsumoto <shuhei.matsumoto.xt@hitachi.com>
Reviewed-by: default avatarJim Harris <james.r.harris@intel.com>
Reviewed-by: default avatarMaciej Wawryk <maciejx.wawryk@intel.com>
parent 2df77053
Loading
Loading
Loading
Loading
+4 −12
Original line number Diff line number Diff line
@@ -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

+1 −3
Original line number Diff line number Diff line
@@ -190,9 +190,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