annotate resources/tests/make_tests.sh @ 125:850a4a9bd832 scope-refactoring

Added ifdefs and unified the code with udpioplugin ... the latter has not been tested (or committed). TODO: still it hangs after ctrl-c BeagleRT (auxiliary tasks do not terminate). TODO: sometimes you can hear dropouts in the transmission. Maybe it is due to pointer drifting. Rebooting BBB fixes/affects this issue.
author Giulio Moro <giuliomoro@yahoo.it>
date Sat, 22 Aug 2015 02:53:36 +0100
parents f5b5c648cd5d
children
rev   line source
giuliomoro@44 1 #!/bin/bash
giuliomoro@44 2 mkdir -p build
giuliomoro@44 3 mkdir -p bin
giuliomoro@44 4 g++ -o build/UdpServer.o -O2 -c ../../core/UdpServer.cpp &&\
giuliomoro@44 5 g++ -O2 -o build/UdpClient.o -c ../../core/UdpClient.cpp && \
giuliomoro@44 6 g++ -O2 -o build/UdpClientUdpServerTest.o -c UdpClientUdpServerTest.cpp && \
giuliomoro@44 7 g++ -o bin/UdpClientUdpServerTest build/UdpClientUdpServerTest.o build/UdpClient.o build/UdpServer.o