VERSION
=======
version is 0.1.2

+ version update from 0.1.1 -> 0.1.2
	* cant open file is CRITICAL not UNKNOWN

ABOUT
=====
testio is program/nagios plugin, for checking I/O response time of filesystem. 

HOW IT WORKS
============
Program asynchronous writes/reads data to output file, and mesures time needed to complete.
If it needs more time than provided maximum critical time, then it terminates (timeout).
Program should return nagios compatible output with exit status.

Examples:

$ testio -i -f /tmp/testio -w 10 -c 20
testio CRITICAL taking too long, but job caceled, file /tmp/testio

$ testio -o -f /tmp/testio -w 50 -c 100
testio WARNING time  84ms, file /tmp/testio

$ testio -o -f /tmp/testio -w 100 -c 200
testio OK time  92ms, file /tmp/testio

LICENSE and WARRANTY
=====================
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * Copy of GNU General Public License is available at
 * http://www.gnu.org/copyleft/gpl.html
 *
 * Violations of this license should be reported to
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA

REQUIREMENTS
============
- PLATFORM: any platform with glibc
- OS: > Linux 2.6

INSTALL
=======
$./configure
$./make
$./make install
