summaryrefslogtreecommitdiffstats
path: root/cpukit/libtest/t-test-checks-psx.c
blob: fe2b375b8f65fdcd96a242f942840d437d768abc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include <rtems/test.h>

#include <errno.h>

void T_check_psx_error(const T_check_context *t, int a, int eeno)
{
	int aeno;

	aeno = errno;
	T_check(t, a == -1 && aeno == eeno, "%i == -1, %s == %s", a,
	    T_strerror(aeno), T_strerror(eeno));
}

void T_check_psx_success(const T_check_context *t, int a)
{
	T_check(t, a == 0, "%i == 0, %s", a, T_strerror(errno));
}