Lines Matching refs:tlb
266 ./datagen -g20KB > tmp-tlb-dg20k
267 $(LZ4) < tmp-tlb-dg20k | $(LZ4) -d > tmp-tlb-dec
268 $(DIFF) -q tmp-tlb-dg20k tmp-tlb-dec
269 $(LZ4) --no-frame-crc < tmp-tlb-dg20k | $(LZ4) -d > tmp-tlb-dec
270 $(DIFF) -q tmp-tlb-dg20k tmp-tlb-dec
276 @echo "hello world" > tmp-tlb-hw
277 $(LZ4) --rm -f tmp-tlb-hw tmp-tlb-hw.lz4
278 test ! -f tmp-tlb-hw # must fail (--rm)
279 test -f tmp-tlb-hw.lz4
280 $(PRGDIR)/lz4cat tmp-tlb-hw.lz4 # must display hello world
281 test -f tmp-tlb-hw.lz4
282 $(PRGDIR)/unlz4 --rm tmp-tlb-hw.lz4 tmp-tlb-hw
283 test -f tmp-tlb-hw
284 test ! -f tmp-tlb-hw.lz4 # must fail (--rm)
285 test ! -f tmp-tlb-hw.lz4.lz4 # must fail (unlz4)
286 $(PRGDIR)/lz4cat tmp-tlb-hw # pass-through mode
287 test -f tmp-tlb-hw
288 test ! -f tmp-tlb-hw.lz4 # must fail (lz4cat)
289 $(LZ4) tmp-tlb-hw tmp-tlb-hw.lz4 # creates tmp-tlb-hw.lz4
290 $(PRGDIR)/lz4cat < tmp-tlb-hw.lz4 > tmp-tlb3 # checks lz4cat works with stdin (#285)
291 $(DIFF) -q tmp-tlb-hw tmp-tlb3
292 $(PRGDIR)/lz4cat < tmp-tlb-hw > tmp-tlb2 # checks lz4cat works in pass-through mode
293 $(DIFF) -q tmp-tlb-hw tmp-tlb2
294 cp tmp-tlb-hw ./-d
301 $(DIFF) -q tmp-tlb-hw tmp-tlb4
302 $(LZ4) -f tmp-tlb-hw
303 $(LZ4) --list tmp-tlb-hw.lz4 # test --list on valid single-frame file
304 cat tmp-tlb-hw >> tmp-tlb-hw.lz4
305 $(LZ4) -f tmp-tlb-hw.lz4 # uncompress valid frame followed by invalid data
306 $(LZ4) -BX tmp-tlb-hw -c -q | $(LZ4) -tv # test block checksum
312 ! $(LZ4) -c --fast=0 tmp-tlb-dg20K # lz4 should fail when fast=0
313 ! $(LZ4) -c --fast=-1 tmp-tlb-dg20K # lz4 should fail when fast=-1
315 @echo "TEST" > tmp-tlb-test
316 $(LZ4) -m tmp-tlb-test
317 $(LZ4) tmp-tlb-test.lz4 tmp-tlb-test2
318 $(DIFF) -q tmp-tlb-test tmp-tlb-test2
319 @$(RM) tmp-tlb*