Lines Matching refs:opt

9 opt="2>/dev/null"
13 testing "dd if=(file)" "dd if=input $opt" "I WANT\n" "I WANT\n" ""
14 testing "dd of=(file)" "dd of=file $opt && cat file" "I WANT\n" "" "I WANT\n"
15 testing "dd if=file of=file" "dd if=input of=foo $opt && cat foo && rm -f foo" \
17 testing "dd if=file | dd of=file" "dd if=input $opt | dd of=foo $opt &&
19 testing "dd (stdout)" "dd $opt" "I WANT\n" "" "I WANT\n"
21 "dd if=input of=outFile seek=8860 bs=1M conv=sync,noerror $opt &&
24 "dd if=input of=/dev/null $opt && echo 'yes'" "yes\n" "I WANT\n" ""
26 "dd if=/dev/zero of=sda.txt bs=512 count=1 $opt &&
29 "dd if=/dev/zero of=sda.txt ibs=512 obs=256 count=1 $opt &&
32 "dd if=/dev/zero of=sda.txt ibs=512 obs=256 count=3 $opt &&
36 testing "dd if=softlink" "dd if=softlink $opt" "I WANT\n" "I WANT\n" ""
40 testing "dd if=file of=softlink" "dd if=input of=softlink $opt &&
44 testing "dd if=file of=file (same file)" "dd if=input of=input $opt &&
47 testing "dd with ibs obs bs" "dd ibs=2 obs=5 bs=9 $opt" "I WANT\n" "" "I WANT\n"
48 testing "dd with ibs obs bs if" "dd ibs=2 obs=5 bs=9 if=input $opt" \
51 testing "dd with ibs obs count" "dd ibs=1 obs=1 count=1 $opt" "I" "" "I WANT\n"
52 testing "dd with ibs obs count if" "dd ibs=1 obs=1 count=3 if=input $opt" \
55 testing "dd with count" "dd count=1 $opt" "I WANT\n" "" "I WANT\n"
56 testing "dd with count if" "dd count=1 if=input $opt" "I WANT\n" "I WANT\n" ""
58 testing "dd with skip" "dd skip=0 $opt" "I WANT\n" "" "I WANT\n"
59 testing "dd with skip if" "dd skip=0 if=input $opt" "I WANT\n" "I WANT\n" ""
61 testing "dd with seek" "dd seek=0 $opt" "I WANT\n" "" "I WANT\n"
62 testing "dd with seek if" "dd seek=0 if=input $opt" "I WANT\n" "I WANT\n" ""
69 testing "dd conv=notrunc" "dd conv=notrunc $opt" "I WANT\n" "" "I WANT\n"
70 testing "dd conv=notrunc with IF" "dd conv=notrunc if=input $opt" "I WANT\n" \
73 testing "dd conv=noerror" "dd conv=noerror $opt" "I WANT\n" "" "I WANT\n"
74 testing "dd conv=noerror with IF" "dd conv=noerror if=input $opt" "I WANT\n" \
77 testing "dd conv=fsync" "dd conv=fsync $opt" "I WANT\n" "" "I WANT\n"
78 testing "dd conv=fsync with IF" "dd conv=fsync if=input $opt" "I WANT\n" \
81 testing "dd conv=sync" "dd conv=sync $opt | head -n 1" "I WANT\n" "" "I WANT\n"
82 testing "dd conv=sync with IF" "dd conv=sync if=input $opt | head -n 1" "I WANT\n" \