mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-11 23:37:42 +00:00
8afd34f2d8
Back in commit bd6c46fa0cfe275c24debc1152cfc5206c04b59b Author: Juerg Haefliger <juerg.haefliger@hp.com> Date: Mon Jan 31 06:42:57 2011 -0500 tests: handle backspace-newline pairs in test input files all the test argv files were line wrapped so that the args were less than 80 characters. The way the line wrapping was done turns out to be quite undesirable, because it often leaves multiple parameters on the same line. If we later need to add or remove individual parameters, then it leaves us having to redo line wrapping. This commit changes the line wrapping so that every single "-param value" is one its own new line. If the "value" is still too long, then we break on ',' or ':' or ' ' as needed. This means that when we come to add / remove parameters from the test files line, the patch diffs will only ever show a single line added/removed which will greatly simplify review work. Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
59 lines
1.1 KiB
Plaintext
59 lines
1.1 KiB
Plaintext
ebtables \
|
|
-t nat \
|
|
-F J-vnet0-stp-xyz
|
|
ebtables \
|
|
-t nat \
|
|
-X J-vnet0-stp-xyz
|
|
ebtables \
|
|
-t nat \
|
|
-N J-vnet0-stp-xyz
|
|
ebtables \
|
|
-t nat \
|
|
-A libvirt-J-vnet0 \
|
|
-d 01:80:c2:00:00:00 \
|
|
-j J-vnet0-stp-xyz
|
|
ebtables \
|
|
-t nat \
|
|
-F P-vnet0-stp-xyz
|
|
ebtables \
|
|
-t nat \
|
|
-X P-vnet0-stp-xyz
|
|
ebtables \
|
|
-t nat \
|
|
-N P-vnet0-stp-xyz
|
|
ebtables \
|
|
-t nat \
|
|
-A libvirt-P-vnet0 \
|
|
-d 01:80:c2:00:00:00 \
|
|
-j P-vnet0-stp-xyz
|
|
ebtables \
|
|
-t nat \
|
|
-A P-vnet0-stp-xyz \
|
|
-s 01:02:03:04:05:06/ff:ff:ff:ff:ff:ff \
|
|
-d 01:80:c2:00:00:00 \
|
|
--stp-type 18 \
|
|
--stp-flags 68 \
|
|
-j CONTINUE
|
|
ebtables \
|
|
-t nat \
|
|
-A J-vnet0-stp-xyz \
|
|
-s 01:02:03:04:05:06/ff:ff:ff:ff:ff:ff \
|
|
-d 01:80:c2:00:00:00 \
|
|
--stp-root-pri 4660:9029 \
|
|
--stp-root-addr 06:05:04:03:02:01/ff:ff:ff:ff:ff:ff \
|
|
--stp-root-cost 287454020:573785173 \
|
|
-j RETURN
|
|
ebtables \
|
|
-t nat \
|
|
-A P-vnet0-stp-xyz \
|
|
-s 01:02:03:04:05:06/ff:ff:ff:ff:ff:ff \
|
|
-d 01:80:c2:00:00:00 \
|
|
--stp-sender-prio 4660 \
|
|
--stp-sender-addr 06:05:04:03:02:01 \
|
|
--stp-port 123:234 \
|
|
--stp-msg-age 5544:5555 \
|
|
--stp-max-age 7777:8888 \
|
|
--stp-hello-time 12345:12346 \
|
|
--stp-forward-delay 54321:65432 \
|
|
-j DROP
|