mirror of
https://github.com/thead-yocto-mirror/meta-openembedded
synced 2026-09-07 06:34:46 +02:00
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>
15 lines
355 B
Bash
Executable File
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
|