mirror of
https://github.com/opnsense/src.git
synced 2026-04-10 11:58:54 -04:00
13 lines
168 B
Bash
13 lines
168 B
Bash
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
# Perform memory leak test
|
|
#
|
|
|
|
while [ 1 ] ; do
|
|
./atm_udp.ng 1 127.0.0.1 5001 127.0.0.1 5002
|
|
sleep 2
|
|
./atm_udp.ng flush
|
|
vmstat -m
|
|
done
|