forked from landley/toybox
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathxzcat.test
executable file
·26 lines (22 loc) · 993 Bytes
/
xzcat.test
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/bin/bash
# Copyright 2014 Divya Kothari <[email protected]>
# Copyright 2014 Naha Maggu <[email protected]>
[ -f testing.sh ] && . testing.sh
#testing "name" "command" "result" "infile" "stdin"
echo "hello" > file
tar -cJf file.xz file
# Get system xzcat
xzcatExe=`which xzcat`
$xzcatExe file.xz > xzcatOut
testing "- decompresses a single file" "xzcat file.xz > Tempfile && echo "yes"; diff Tempfile xzcatOut && echo "yes"; rm -rf file* xzcatOut Tempfile" "yes\nyes\n" "" ""
#testing "name" "command" "result" "infile" "stdin"
echo "hello" > file1
echo "hi" > file2
echo "Hi, Good morning !! I am a xzcat tester" > file3
tar -cJf file1.xz file1
tar -cJf file2.xz file2
tar -cJf file3.xz file3
# Get system xzcat
xzcatExe=`which xzcat`
$xzcatExe file1.xz file2.xz file3.xz > xzcatOut
testing "- decompresses multiple files" "xzcat file1.xz file2.xz file3.xz > Tempfile && echo "yes" ; diff Tempfile xzcatOut && echo "yes"; rm -rf file* xzcatOut Tempfile " "yes\nyes\n" "" ""