From ae610a86b489f77b9571070792fb2202fbd592ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Frank=20F=C3=B6rster?= Date: Wed, 11 May 2016 19:22:13 +0200 Subject: [PATCH] Removed old FASTQ test #1 --- t/test.sh | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/t/test.sh b/t/test.sh index ed53bb1..0d26523 100755 --- a/t/test.sh +++ b/t/test.sh @@ -115,24 +115,6 @@ test_SeqChunker "FASTQ: split pipe" "$SC -n 10 $EC" ##----------------------------------------------------------------------------## # FASTQ -EC="$DIR/ec.fq" -DESC="split pipe" -echo "Test #"$((++TC))" $DESC"; -TF="$DIR/tmp" -cmd="$SC -n 10 $EC" -echo "$cmd"; -$cmd > $TF - -DIFF=$(diff $EC $TF) -if [ ! -z "$DIFF" ]; then - echo "..failed" - echo "unexpected difference found:" 1>&2; - echo "$DIFF" 1>&2; - exit 1; -fi; -echo "..ok" - - # split in chunks DESC="split file" echo "Test #"$((++TC))" $DESC";