From 818cdd7b5bba465b111214e1984440a537f88312 Mon Sep 17 00:00:00 2001 From: James Fantin-Hardesty <24646452+jfantinhardesty@users.noreply.github.com> Date: Fri, 6 Oct 2023 13:38:45 -0600 Subject: [PATCH] Comment out test on windows --- .github/workflows/code-coverage.yml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/code-coverage.yml b/.github/workflows/code-coverage.yml index 6e88c457a..8efa56d53 100644 --- a/.github/workflows/code-coverage.yml +++ b/.github/workflows/code-coverage.yml @@ -885,18 +885,18 @@ jobs: VERBOSE_LOG: false run: "./cloudfuse.test -test.v -test.coverprofile=${{ env.WORK_DIR }}/cloudfuse_gentest3.cov gen-test-config --config-file=azure_stream.yaml --container-name=${{ matrix.containerName }} --temp-path=${{ env.TEMP_DIR }} --output-file=${{ env.cloudfuse_STREAM_CFG }}" - - name: Block Blob Stream Preparation - shell: bash - run: |- - rm -rf ${{ env.MOUNT_DIR }}/* - rm -rf ${{ env.TEMP_DIR }}/* - ./cloudfuse.test -test.v -test.coverprofile=${{ env.WORK_DIR }}/cloudfuse_stream_prep.cov mount ${{ env.MOUNT_DIR }} --config-file=${{ env.cloudfuse_STREAM_CFG }} & - sleep 10 - pid=`ps -a | grep cloudfuse | tr -s ' ' | cut -d ' ' -f2` - for i in {10,50,100}; do echo $i; done | parallel --will-cite -j 5 'head -c {}M < /dev/urandom > ${{ env.WORK_DIR }}/myfile_{}' - for i in {10,50,100}; do echo $i; done | parallel --will-cite -j 5 'cp ${{ env.WORK_DIR }}/myfile_{} ${{ env.MOUNT_DIR }}/' - kill $pid - sleep 5" + # - name: Block Blob Stream Preparation + # shell: bash + # run: |- + # rm -rf ${{ env.MOUNT_DIR }}/* + # rm -rf ${{ env.TEMP_DIR }}/* + # ./cloudfuse.test -test.v -test.coverprofile=${{ env.WORK_DIR }}/cloudfuse_stream_prep.cov mount ${{ env.MOUNT_DIR }} --config-file=${{ env.cloudfuse_STREAM_CFG }} & + # sleep 10 + # pid=`ps -a | grep cloudfuse | tr -s ' ' | cut -d ' ' -f2` + # for i in {10,50,100}; do echo $i; done | parallel --will-cite -j 5 'head -c {}M < /dev/urandom > ${{ env.WORK_DIR }}/myfile_{}' + # for i in {10,50,100}; do echo $i; done | parallel --will-cite -j 5 'cp ${{ env.WORK_DIR }}/myfile_{} ${{ env.MOUNT_DIR }}/' + # kill $pid + # sleep 5" - name: Block Blob Stream Coverage shell: bash