Lines Matching refs:tlb
229 ./datagen -g20KB > tmp-tlb-dg20k
230 $(LZ4) < tmp-tlb-dg20k | $(LZ4) -d > tmp-tlb-dec
231 $(DIFF) -q tmp-tlb-dg20k tmp-tlb-dec
232 $(LZ4) --no-frame-crc < tmp-tlb-dg20k | $(LZ4) -d > tmp-tlb-dec
233 $(DIFF) -q tmp-tlb-dg20k tmp-tlb-dec
239 @echo "hello world" > tmp-tlb-hw
240 $(LZ4) --rm -f tmp-tlb-hw tmp-tlb-hw.lz4
241 test ! -f tmp-tlb-hw # must fail (--rm)
242 test -f tmp-tlb-hw.lz4
243 $(PRGDIR)/lz4cat tmp-tlb-hw.lz4 # must display hello world
244 test -f tmp-tlb-hw.lz4
245 $(PRGDIR)/unlz4 --rm tmp-tlb-hw.lz4 tmp-tlb-hw
246 test -f tmp-tlb-hw
247 test ! -f tmp-tlb-hw.lz4 # must fail (--rm)
248 test ! -f tmp-tlb-hw.lz4.lz4 # must fail (unlz4)
249 $(PRGDIR)/lz4cat tmp-tlb-hw # pass-through mode
250 test -f tmp-tlb-hw
251 test ! -f tmp-tlb-hw.lz4 # must fail (lz4cat)
252 $(LZ4) tmp-tlb-hw tmp-tlb-hw.lz4 # creates tmp-tlb-hw.lz4
253 $(PRGDIR)/lz4cat < tmp-tlb-hw.lz4 > tmp-tlb3 # checks lz4cat works with stdin (#285)
254 $(DIFF) -q tmp-tlb-hw tmp-tlb3
255 $(PRGDIR)/lz4cat < tmp-tlb-hw > tmp-tlb2 # checks lz4cat works in pass-through mode
256 $(DIFF) -q tmp-tlb-hw tmp-tlb2
257 cp tmp-tlb-hw ./-d
264 $(DIFF) -q tmp-tlb-hw tmp-tlb4
265 $(LZ4) -f tmp-tlb-hw
266 cat tmp-tlb-hw >> tmp-tlb-hw.lz4
267 $(LZ4) -f tmp-tlb-hw.lz4 # uncompress valid frame followed by invalid data
268 $(LZ4) -BX tmp-tlb-hw -c -q | $(LZ4) -tv # test block checksum
274 ! $(LZ4) -c --fast=0 tmp-tlb-dg20K # lz4 should fail when fast=0
275 ! $(LZ4) -c --fast=-1 tmp-tlb-dg20K # lz4 should fail when fast=-1
276 @$(RM) tmp-tlb*