/* condition : @file must be valid, and not have reached its end.
- * @return : length of line written into buf, without the final '\n',
+ * @return : length of line written into @buf, ended with `\0` instead of '\n',
* or 0, if there is no new line */
static size_t readLineFromFile(char* buf, size_t len, FILE* file)
{
assert(!feof(file));
CONTROL( fgets(buf, (int) len, file) == buf ); /* requires success */
- if (strlen(buf)==0) return 0;
- return strlen(buf) - (buf[strlen(buf)-1] == '\n'); /* ignore final '\n' character */
+ { size_t linelen = strlen(buf);
+ if (strlen(buf)==0) return 0;
+ if (buf[linelen-1] == '\n') linelen--;
+ buf[linelen] = '\0';
+ return linelen+1;
+ }
}
/* Conditions :
size_t const lineLength = readLineFromFile(buf+pos, dstCapacity-pos, inputFile);
if (lineLength == 0) break;
assert(pos + lineLength < dstCapacity);
- buf[pos+lineLength] = '\0'; /* replace '\n' with '\0'*/
- pos += lineLength + 1;
+ pos += lineLength;
++nbFiles;
}
fi
-println "\n===> lz4 frame tests "
-
if [ $LZ4MODE -eq 1 ]; then
+ println "\n===> lz4 frame tests "
./datagen > tmp
$ZSTD -f --format=lz4 tmp
$ZSTD -f tmp
truncateLastByte tmp.lz4 | $ZSTD -t > $INTOVOID && die "incomplete frame not detected !"
rm tmp*
else
- println "lz4 mode not supported"
+ println "\nlz4 mode not supported"
fi
+
println "\n===> suffix list test"
! $ZSTD -d tmp.abc 2> tmplg
grep ".lz4" tmplg > $INTOVOID && die "Unsupported suffix listed"
fi
+
println "\n===> tar extension tests "
rm -f tmp tmp.tar tmp.tzst tmp.tgz tmp.txz tmp.tlz4
! $ZSTD -d tmp.tz
! $ZSTD -d tmp.tzs
-exit
println "\n===> zstd round-trip tests "