xref: /OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-support/libee/libee/ezapi1.sh (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1#!/bin/sh
2#
3echo ---------------------------------------------------------------------------
4echo A very basic test for the event class
5echo ---------------------------------------------------------------------------
6rm -f infile
7./genfile 100 > infile
8./ezapi1 -iinfile
9if [ $? -ne 0 ] ; then
10   echo "FAIL: $0"
11   exit 1
12fi
13echo "PASS: $0"
14rm -f infile
15