ttcn3-gbproxy-test: Fix pcap capture with dumpcap

In commit 2279aac6 dumpcap is used to capture pcaps, but dumpcap fails
if the directory isn't writable for everyone.
Commit 62ac27779 only fixed this issue for frame relay, this simply
mirrors the change for ttcn3-gbproxy-test

Change-Id: I11dcf9efd0b06544a82e31dec03fe76e182fd0d3
Related: OS#4518 SYS#5115
This commit is contained in:
Daniel Willmann 2021-01-08 01:03:25 +01:00
parent da8c47ecb5
commit 096f6a0030
2 changed files with 4 additions and 1 deletions

View File

@ -24,7 +24,7 @@ SUBNET=25
network_create $SUBNET
mkdir $VOL_BASE_DIR/gbproxy-tester
# if we don't change permissiosn, dumpcap fails to write (despite starting it as root!)
# if we don't change permissions, dumpcap fails to write (despite starting it as root!)
chmod a+w $VOL_BASE_DIR/gbproxy-tester
cp GBProxy_Tests.cfg $VOL_BASE_DIR/gbproxy-tester/

View File

@ -10,6 +10,9 @@ SUBNET=24
network_create $SUBNET
mkdir $VOL_BASE_DIR/gbproxy-tester
# if we don't change permissions, dumpcap fails to write (despite starting it as root!)
chmod a+w $VOL_BASE_DIR/gbproxy-tester
cp GBProxy_Tests.cfg $VOL_BASE_DIR/gbproxy-tester/
mkdir $VOL_BASE_DIR/sgsn