|
1 | 1 | --- |
2 | 2 | - test: dd if=image.img of=/dev/sda |
3 | 3 | description: match command writing to hard disk |
| 4 | +- test: dd if=image.img of=/dev/sda |
| 5 | + description: match command writing to hard disk with spaces |
| 6 | +- test: dd of=/dev/sda if=image.img |
| 7 | + description: match command writing to hard disk with spaces |
4 | 8 | - test: dd if=image.img of=/dev/sdb |
5 | 9 | description: match command writing to second hard disk |
6 | 10 | - test: dd if=image.img of=/dev/mmcblk0 |
|
13 | 17 | description: should not match reading from disk |
14 | 18 | - test: dd if=file.txt of=output.txt |
15 | 19 | description: should not match regular file operations |
| 20 | +- test: "dd if=image.img of=/dev/sda" |
| 21 | + description: "match command with extra spaces" |
| 22 | +- test: "dd of=/dev/sda if=image.img" |
| 23 | + description: "match command with extra spaces" |
| 24 | +- test: "sudo dd if=image.img of=/dev/sda" |
| 25 | + description: "match command with sudo" |
| 26 | +- test: "sudo dd of=/dev/sda if=image.img" |
| 27 | + description: "match command with sudo" |
| 28 | +- test: "dd if=image.img of=/dev/sda bs=4M count=1" |
| 29 | + description: "match command with count parameter" |
| 30 | +- test: "dd if=image.img of=/dev/sda bs=4M seek=1" |
| 31 | + description: "match command with seek parameter" |
| 32 | +- test: "dd if=image.img of=/dev/sda bs=4M conv=notrunc" |
| 33 | + description: "match command with conv parameter" |
| 34 | +- test: "dd if=image.img of=/dev/sda2" |
| 35 | + description: "match command with different partition" |
| 36 | +- test: "dd if=image.img of=/dev/sdb" |
| 37 | + description: "match command with different disk" |
| 38 | +- test: "dd if=image.img of=/dev/mmcblk0p2" |
| 39 | + description: "match command with different SD card partition" |
| 40 | +- test: "dd if=image.img of=/dev/sda status=progress" |
| 41 | + description: "match command with progress status" |
| 42 | +- test: "dd if=image.img of=/dev/sda status=none" |
| 43 | + description: "match command with no status" |
| 44 | +- test: "dd if=image.img of=/dev/sda status=noxfer" |
| 45 | + description: "match command with no transfer status" |
0 commit comments