mirror of
https://github.com/SoftEtherVPN/SoftEtherVPN.git
synced 2024-11-06 17:50:40 +03:00
8 lines
192 B
Bash
8 lines
192 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
set -eux
|
||
|
|
||
|
echo -n | ./build/vpntest s | grep -Fq 'NO MEMORY LEAKS'
|
||
|
echo -n | ./build/vpntest c | grep -Fq 'NO MEMORY LEAKS'
|
||
|
echo -n | ./build/vpntest b | grep -Fq 'NO MEMORY LEAKS'
|