Lines Matching refs:opt

9 opt="2>/dev/null"
14 testing "count=2" "dd if=input count=2 ibs=1 $opt" "hi" "high\n" ""
15 testing "count= 2" "dd if=input 'count= 2' ibs=1 $opt" "hi" "high\n" ""
16 testing "count=0x2" "dd if=input 'count=0x2' ibs=1 $opt" "hi" "high\n" ""
19 testing "if=(file)" "dd if=input $opt" "I WANT\n" "I WANT\n" ""
20 testing "of=(file)" "dd of=file $opt && cat file" "I WANT\n" "" "I WANT\n"
21 testing "if=file of=file" "dd if=input of=foo $opt && cat foo && rm -f foo" \
23 testing "if=file | dd of=file" "dd if=input $opt | dd of=foo $opt &&
25 testing "(stdout)" "dd $opt" "I WANT\n" "" "I WANT\n"
27 "dd if=input of=outFile seek=8860 bs=1M conv=sync,noerror $opt &&
30 "dd if=input of=/dev/null $opt && echo 'yes'" "yes\n" "I WANT\n" ""
32 "dd if=/dev/zero of=sda.txt bs=512 count=1 $opt &&
35 "dd if=/dev/zero of=sda.txt ibs=512 obs=256 count=1 $opt &&
38 "dd if=/dev/zero of=sda.txt ibs=512 obs=256 count=3 $opt &&
42 testing "if=softlink" "dd if=softlink $opt" "I WANT\n" "I WANT\n" ""
46 testing "if=file of=softlink" "dd if=input of=softlink $opt &&
50 testing "if=file of=file (same file)" "dd if=input of=input $opt &&
53 "dd if=input of=input conv=notrunc $opt && cat input" \
56 testing "with ibs obs bs" "dd ibs=2 obs=5 bs=9 $opt" "I WANT\n" "" "I WANT\n"
57 testing "with ibs obs bs if" "dd ibs=2 obs=5 bs=9 if=input $opt" \
60 testing "with ibs obs count" "dd ibs=1 obs=1 count=1 $opt" "I" "" "I WANT\n"
61 testing "with ibs obs count if" "dd ibs=1 obs=1 count=3 if=input $opt" \
64 testing "with count" "dd count=1 $opt" "I WANT\n" "" "I WANT\n"
65 testing "with count if" "dd count=1 if=input $opt" "I WANT\n" "I WANT\n" ""
67 testing "with skip" "dd skip=0 $opt" "I WANT\n" "" "I WANT\n"
68 testing "with skip if" "dd skip=0 if=input $opt" "I WANT\n" "I WANT\n" ""
70 testing "with seek" "dd seek=0 $opt" "I WANT\n" "" "I WANT\n"
71 testing "with seek if" "dd seek=0 if=input $opt" "I WANT\n" "I WANT\n" ""
75 testing "conv=notrunc" "dd conv=notrunc $opt" "I WANT\n" "" "I WANT\n"
76 testing "conv=notrunc with IF" "dd conv=notrunc if=input $opt" "I WANT\n" \
79 testing "conv=noerror" "dd conv=noerror $opt" "I WANT\n" "" "I WANT\n"
80 testing "conv=noerror with IF" "dd conv=noerror if=input $opt" "I WANT\n" \
83 testing "conv=fsync" "dd conv=fsync $opt" "I WANT\n" "" "I WANT\n"
84 testing "conv=fsync with IF" "dd conv=fsync if=input $opt" "I WANT\n" \
87 testing "conv=sync" "dd conv=sync $opt | head -n 1" "I WANT\n" "" "I WANT\n"
88 testing "conv=sync with IF" "dd conv=sync if=input $opt | head -n 1" "I WANT\n" \