Files
meta-openembedded/meta-oe/recipes-support/libee/libee/ezapi1.sh
Roy Li 568f5a5db2 libee: add recipe
The core idea of libee is to provide a small but hopefully convenient
API layer above the CEE standard.

Signed-off-by: Roy Li <rongqing.li@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-07-22 00:01:48 +02:00

15 lines
355 B
Bash
Executable File

#!/bin/sh
#
echo ---------------------------------------------------------------------------
echo A very basic test for the event class
echo ---------------------------------------------------------------------------
rm -f infile
./genfile 100 > infile
./ezapi1 -iinfile
if [ $? -ne 0 ] ; then
echo "FAIL: $0"
exit 1
fi
echo "PASS: $0"
rm -f infile