Lines Matching full:tmp
119 @$(RM) -rf core *.o *.test tmp* \
213 ls -ls tmp*
236 @echo -n > tmp-lfc-empty
237 @echo hi > tmp-lfc-nonempty
238 $(CAT) tmp-lfc-nonempty tmp-lfc-empty tmp-lfc-nonempty > tmp-lfc-src
239 $(LZ4) -zq tmp-lfc-empty -c > tmp-lfc-empty.lz4
240 $(LZ4) -zq tmp-lfc-nonempty -c > tmp-lfc-nonempty.lz4
241 $(CAT) tmp-lfc-nonempty.lz4 tmp-lfc-empty.lz4 tmp-lfc-nonempty.lz4 > tmp-lfc-concat.lz4
242 $(LZ4) -d tmp-lfc-concat.lz4 -c > tmp-lfc-result
243 $(CMP) tmp-lfc-src tmp-lfc-result
244 @$(RM) tmp-lfc-*
249 @$(DATAGEN) -s1 > tmp-tlm1 2> $(VOID)
250 @$(DATAGEN) -s2 -g100K > tmp-tlm2 2> $(VOID)
251 @$(DATAGEN) -s3 -g200K > tmp-tlm3 2> $(VOID)
253 $(LZ4) -f -m tmp-tlm*
254 test -f tmp-tlm1.lz4
255 test -f tmp-tlm2.lz4
256 test -f tmp-tlm3.lz4
258 mv tmp-tlm1 tmp-tlm1-orig
259 mv tmp-tlm2 tmp-tlm2-orig
260 mv tmp-tlm3 tmp-tlm3-orig
261 $(LZ4) -d -f -m tmp-tlm*.lz4
262 $(CMP) tmp-tlm1 tmp-tlm1-orig # must be identical
263 $(CMP) tmp-tlm2 tmp-tlm2-orig
264 $(CMP) tmp-tlm3 tmp-tlm3-orig
266 $(CAT) tmp-tlm1.lz4 tmp-tlm2.lz4 tmp-tlm3.lz4 > tmp-tlm-concat1
268 $(LZ4) -m tmp-tlm1 tmp-tlm2 tmp-tlm3 -c > tmp-tlm-concat2
269 test ! -f tmp-tlm1.lz4 # must not create .lz4 artefact
270 $(CMP) tmp-tlm-concat1 tmp-tlm-concat2 # must be equivalent
272 $(RM) tmp-tlm-concat1 tmp-tlm-concat2
273 $(LZ4) -f -m tmp-tlm1 tmp-tlm2 tmp-tlm3 # generate .lz4 to decompress
274 $(CAT) tmp-tlm1 tmp-tlm2 tmp-tlm3 > tmp-tlm-concat1 # create concatenated reference
275 $(RM) tmp-tlm1 tmp-tlm2 tmp-tlm3
276 $(LZ4) -d -m tmp-tlm1.lz4 tmp-tlm2.lz4 tmp-tlm3.lz4 -c > tmp-tlm-concat2
277 test ! -f tmp-tlm1 # must not create file artefact
278 $(CMP) tmp-tlm-concat1 tmp-tlm-concat2 # must be equivalent
280 ! $(LZ4) -f -m tmp-tlm-concat1 notHere tmp-tlm-concat2 # must fail : notHere not present
281 @$(RM) tmp-tlm*
285 @$(DATAGEN) -s1 > tmp-tlm1 2> $(VOID)
286 @$(DATAGEN) -s2 -g100K > tmp-tlm2 2> $(VOID)
287 @$(DATAGEN) -s3 -g200K > tmp-tlm3 2> $(VOID)
289 $(LZ4) -f -l -m tmp-tlm*
290 test -f tmp-tlm1.lz4
291 test -f tmp-tlm2.lz4
292 test -f tmp-tlm3.lz4
294 mv tmp-tlm1 tmp-tlm1-orig
295 mv tmp-tlm2 tmp-tlm2-orig
296 mv tmp-tlm3 tmp-tlm3-orig
297 $(LZ4) -d -f -m tmp-tlm*.lz4
298 $(LZ4) -l -d -f -m tmp-tlm*.lz4 # -l mustn't impact -d option
299 $(CMP) tmp-tlm1 tmp-tlm1-orig # must be identical
300 $(CMP) tmp-tlm2 tmp-tlm2-orig
301 $(CMP) tmp-tlm3 tmp-tlm3-orig
303 $(CAT) tmp-tlm1.lz4 tmp-tlm2.lz4 tmp-tlm3.lz4 > tmp-tlm-concat1
305 $(LZ4) -l -m tmp-tlm1 tmp-tlm2 tmp-tlm3 -c > tmp-tlm-concat2
306 test ! -f tmp-tlm1.lz4 # must not create .lz4 artefact
307 $(CMP) tmp-tlm-concat1 tmp-tlm-concat2 # must be equivalent
309 $(RM) tmp-tlm-concat1 tmp-tlm-concat2
310 $(LZ4) -l -f -m tmp-tlm1 tmp-tlm2 tmp-tlm3 # generate .lz4 to decompress
311 $(CAT) tmp-tlm1 tmp-tlm2 tmp-tlm3 > tmp-tlm-concat1 # create concatenated reference
312 $(RM) tmp-tlm1 tmp-tlm2 tmp-tlm3
313 $(LZ4) -d -m tmp-tlm1.lz4 tmp-tlm2.lz4 tmp-tlm3.lz4 -c > tmp-tlm-concat2
314 …$(LZ4) -d -l -m tmp-tlm1.lz4 tmp-tlm2.lz4 tmp-tlm3.lz4 -c > tmp-tlm-concat2 # -l mustn't impact op…
315 test ! -f tmp-tlm1 # must not create file artefact
316 $(CMP) tmp-tlm-concat1 tmp-tlm-concat2 # must be equivalent
318 …! $(LZ4) -f -l -m tmp-tlm-concat1 notHere-legacy tmp-tlm-concat2 # must fail : notHere-legacy not…
319 @$(RM) tmp-tlm*
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
358 $(LZ4) -d --rm -- -z tmp-tlb4 # uncompresses ./-z into tmp-tlb4
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*
386 $(DATAGEN) -g16KB > tmp-dict
387 $(DATAGEN) -g32KB > tmp-dict-sample-32k
388 < tmp-dict-sample-32k $(LZ4) -D tmp-dict | $(LZ4) -dD tmp-dict | diff - tmp-dict-sample-32k
389 $(DATAGEN) -g128MB > tmp-dict-sample-128m
390 < tmp-dict-sample-128m $(LZ4) -D tmp-dict | $(LZ4) -dD tmp-dict | diff - tmp-dict-sample-128m
391 touch tmp-dict-sample-0
392 < tmp-dict-sample-0 $(LZ4) -D tmp-dict | $(LZ4) -dD tmp-dict | diff - tmp-dict-sample-0
394 …< tmp-dict-sample-32k $(LZ4) -D tmp-dict-sample-0 | $(LZ4) -dD tmp-dict-sample-0 | diff - tmp-dict…
395 …< tmp-dict-sample-0 $(LZ4) -D tmp-dict-sample-0 | $(LZ4) -dD tmp-dict-sample-0 | diff - tmp-dict-s…
398 $(DATAGEN) -g128KB > tmp-dict-data-128KB
401 $(DATAGEN) -g$$l > tmp-dict-$$l; \
402 …$(DD) if=tmp-dict-$$l of=tmp-dict-$$l-tail bs=1 count=65536 skip=$$((l > 65536 ? l - 65536 : 0)); \
403 …< tmp-dict-$$l $(LZ4) -D stdin tmp-dict-data-128KB -c | $(LZ4) -dD tmp-dict-$$l-tail | $(DIFF…
404 …< tmp-dict-$$l-tail $(LZ4) -D stdin tmp-dict-data-128KB -c | $(LZ4) -dD tmp-dict-$$l | $(DIFF…
407 @$(RM) tmp-dict*
428 @echo "Why hello there " > tmp-tlt2.lz4
429 ! $(LZ4) -f tmp-tlt2.lz4 > $(VOID)
433 @echo "Hello World !" > tmp-tlt1
434 $(LZ4) -dcf tmp-tlt1
435 @echo "from underground..." > tmp-tlt2
436 $(LZ4) -dcfm tmp-tlt1 tmp-tlt2
442 @$(RM) tmp-tlt tmp-tlt1 tmp-tlt2 tmp-tlt2.lz4
460 @$(RM) tmp*
464 @$(RM) tmp*