Skip to content

Commit 1babda3

Browse files
committed
No longer use valgrind
Instead, compile with CC=clang CFLAGS="-fsanitize=address -g"
1 parent 2db3996 commit 1babda3

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

contrib/load-tester/run.sh

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,10 @@ echo "Make sure to configure GatewayInterface in wifidog_mock.conf"
88
./mock_auth.py &
99

1010
# trace-children is necessary because of the libtool wrapper -.-
11-
sudo valgrind --leak-check=full --trace-children=yes --trace-children-skip=/bin/sh \
12-
--log-file=valgrind.log ../../src/wifidog -d 7 -f -c wifidog-mock.conf 2> wifidog.log &
11+
#sudo valgrind --leak-check=full --trace-children=yes --trace-children-skip=/bin/sh \
12+
# --log-file=valgrind.log ../../src/wifidog -d 7 -f -c wifidog-mock.conf 2> wifidog.log &
13+
14+
../../src/wifidog -d 7 -f -c wifidog-mock.conf 2> wifidog.log &
1315

1416
IF=`grep GatewayInterface wifidog-mock.conf | cut -f 2 -d ' '`
1517

0 commit comments

Comments
 (0)