tests: Fix creation of test file in udp passt tests
In what looks like a copy-and-paste error from the TCP script, the udp/passt test script creates a test file called '__TEMP_BIG__', while the commands it use the variable __TEMP__. Correct this so that a) we actually transfer the data we created for the purpose and b) we don't leave a stale __TEMP_BIG__ file in the current directory. Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
This commit is contained in:
parent
70fcba542e
commit
d9894e8214
1 changed files with 1 additions and 1 deletions
|
@ -18,7 +18,7 @@ test UDP/IPv4: host to guest
|
||||||
temp TEMP
|
temp TEMP
|
||||||
temp NC_PID
|
temp NC_PID
|
||||||
guestb (nc -u -q1 -4 -l 10001 & echo $! > __NC_PID__) | tee test.bin | (grep -qm1 "END_OF_TEST" && kill $(cat __NC_PID__))
|
guestb (nc -u -q1 -4 -l 10001 & echo $! > __NC_PID__) | tee test.bin | (grep -qm1 "END_OF_TEST" && kill $(cat __NC_PID__))
|
||||||
host dd if=/dev/urandom bs=1k count=5 > __TEMP_BIG__ && printf "\nEND_OF_TEST\n" >> __TEMP__
|
host dd if=/dev/urandom bs=1k count=5 > __TEMP__ && printf "\nEND_OF_TEST\n" >> __TEMP__
|
||||||
host cat __TEMP__ | nc -u -q1 -N 127.0.0.1 10001
|
host cat __TEMP__ | nc -u -q1 -N 127.0.0.1 10001
|
||||||
guestw
|
guestw
|
||||||
hout HOST_MD5 md5sum __TEMP__ | cut -d' ' -f1
|
hout HOST_MD5 md5sum __TEMP__ | cut -d' ' -f1
|
||||||
|
|
Loading…
Reference in a new issue