From d40803609a78b9a11f2edf2d5f03443cc9cc1e63 Mon Sep 17 00:00:00 2001 From: Jim Harris Date: Mon, 15 Oct 2018 12:54:38 -0700 Subject: [PATCH] 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 Change-Id: I6844183c527953fd4b3329f04171f05e503b04dc Reviewed-on: https://review.gerrithub.io/429517 Chandler-Test-Pool: SPDK Automated Test System Reviewed-by: Ben Walker Tested-by: SPDK CI Jenkins --- test/iscsi_tgt/ext4test/ext4test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/iscsi_tgt/ext4test/ext4test.sh b/test/iscsi_tgt/ext4test/ext4test.sh index 37f19b073..b022cfb7a 100755 --- a/test/iscsi_tgt/ext4test/ext4test.sh +++ b/test/iscsi_tgt/ext4test/ext4test.sh @@ -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)