test/iscsi: exclude *.o from ext4test.sh rsync
This will resolve out-of-space errors that have cropped up as SPDK continues to grow. There's no need to copy *.o files to the mounted filesystem - we 'make clean' right after the rsync anyways. Signed-off-by: Jim Harris <james.r.harris@intel.com> Change-Id: I6844183c527953fd4b3329f04171f05e503b04dc Reviewed-on: https://review.gerrithub.io/429517 Chandler-Test-Pool: SPDK Automated Test System <sys_sgsw@intel.com> Reviewed-by: Ben Walker <benjamin.walker@intel.com> Tested-by: SPDK CI Jenkins <sys_sgci@intel.com>
This commit is contained in:
parent
e8b0ae0393
commit
d40803609a
@ -84,7 +84,7 @@ for dev in $devs; do
|
||||
mkdir -p /mnt/${dev}dir
|
||||
mount -o sync /dev/$dev /mnt/${dev}dir
|
||||
|
||||
rsync -qav --exclude=".git" $rootdir/ /mnt/${dev}dir/spdk
|
||||
rsync -qav --exclude=".git" --exclude="*.o" $rootdir/ /mnt/${dev}dir/spdk
|
||||
|
||||
make -C /mnt/${dev}dir/spdk clean
|
||||
(cd /mnt/${dev}dir/spdk && ./configure $config_params)
|
||||
|
Loading…
Reference in New Issue
Block a user