view resources/tests/make_tests.sh @ 127:6c8fb6f07b47 scope-refactoring

Prevented from hanging upon exit. The issue is with the waitForSocketTime value. See issue#1381
author Giulio Moro <giuliomoro@yahoo.it>
date Mon, 24 Aug 2015 15:36:09 +0100
parents f5b5c648cd5d
children
line wrap: on
line source
#!/bin/bash
mkdir -p build
mkdir -p bin
g++ -o build/UdpServer.o -O2 -c ../../core/UdpServer.cpp &&\
g++ -O2 -o build/UdpClient.o -c ../../core/UdpClient.cpp && \
g++ -O2 -o build/UdpClientUdpServerTest.o -c UdpClientUdpServerTest.cpp && \
g++ -o bin/UdpClientUdpServerTest build/UdpClientUdpServerTest.o build/UdpClient.o build/UdpServer.o