Lines Matching refs:tlb
325 $(DATAGEN) -g20KB > tmp-tlb-dg20k
326 $(LZ4) < tmp-tlb-dg20k | $(LZ4) -d > tmp-tlb-dec
327 $(DIFF) -q tmp-tlb-dg20k tmp-tlb-dec
328 $(LZ4) --no-frame-crc < tmp-tlb-dg20k | $(LZ4) -d > tmp-tlb-dec
329 $(DIFF) -q tmp-tlb-dg20k tmp-tlb-dec
335 @echo "hello world" > tmp-tlb-hw
336 $(LZ4) --rm -f tmp-tlb-hw tmp-tlb-hw.lz4
337 test ! -f tmp-tlb-hw # must fail (--rm)
338 test -f tmp-tlb-hw.lz4
339 $(PRGDIR)/lz4cat tmp-tlb-hw.lz4 # must display hello world
340 test -f tmp-tlb-hw.lz4
341 $(PRGDIR)/unlz4 --rm tmp-tlb-hw.lz4 tmp-tlb-hw
342 test -f tmp-tlb-hw
343 test ! -f tmp-tlb-hw.lz4 # must fail (--rm)
344 test ! -f tmp-tlb-hw.lz4.lz4 # must fail (unlz4)
345 $(PRGDIR)/lz4cat tmp-tlb-hw # pass-through mode
346 test -f tmp-tlb-hw
347 test ! -f tmp-tlb-hw.lz4 # must fail (lz4cat)
348 $(LZ4) tmp-tlb-hw tmp-tlb-hw.lz4 # creates tmp-tlb-hw.lz4
349 $(PRGDIR)/lz4cat < tmp-tlb-hw.lz4 > tmp-tlb3 # checks lz4cat works with stdin (#285)
350 $(DIFF) -q tmp-tlb-hw tmp-tlb3
351 $(PRGDIR)/lz4cat < tmp-tlb-hw > tmp-tlb2 # checks lz4cat works in pass-through mode
352 $(DIFF) -q tmp-tlb-hw tmp-tlb2
353 cp tmp-tlb-hw ./-d
360 $(DIFF) -q tmp-tlb-hw tmp-tlb4
361 $(LZ4) -f tmp-tlb-hw
362 $(LZ4) --list tmp-tlb-hw.lz4 # test --list on valid single-frame file
363 $(CAT) tmp-tlb-hw >> tmp-tlb-hw.lz4
364 $(LZ4) -f tmp-tlb-hw.lz4 # uncompress valid frame followed by invalid data
365 $(LZ4) -BX tmp-tlb-hw -c -q | $(LZ4) -tv # test block checksum
371 ! $(LZ4) -c --fast=0 tmp-tlb-dg20K # lz4 should fail when fast=0
372 ! $(LZ4) -c --fast=-1 tmp-tlb-dg20K # lz4 should fail when fast=-1
376 @echo "TEST" > tmp-tlb-test
377 $(LZ4) -m tmp-tlb-test
378 $(LZ4) tmp-tlb-test.lz4 tmp-tlb-test2
379 $(DIFF) -q tmp-tlb-test tmp-tlb-test2
380 @$(RM) tmp-tlb*