1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
|
/* SPDX-License-Identifier: BSD-3-Clause
* Copyright(c) 2010-2014 Intel Corporation
*/
#include <stdio.h>
#include <stdint.h>
#include <rte_common.h>
#include <rte_alarm.h>
#include "test.h"
#ifndef RTE_EXEC_ENV_WINDOWS
static volatile int flag;
static void
test_alarm_callback(void *cb_arg)
{
flag = 1;
printf("Callback setting flag - OK. [cb_arg = %p]\n", cb_arg);
}
#endif
static int
test_alarm(void)
{
#ifdef RTE_EXEC_ENV_FREEBSD
printf("The alarm API is not supported on FreeBSD\n");
return 0;
#endif
#ifndef RTE_EXEC_ENV_WINDOWS
/* check if it will fail to set alarm with wrong us value */
printf("check if it will fail to set alarm with wrong ms values\n");
if (rte_eal_alarm_set(0, test_alarm_callback,
NULL) >= 0) {
printf("should not be successful with 0 us value\n");
return -1;
}
if (rte_eal_alarm_set(UINT64_MAX - 1, test_alarm_callback,
NULL) >= 0) {
printf("should not be successful with (UINT64_MAX-1) us value\n");
return -1;
}
#endif
/* check if it will fail to set alarm with null callback parameter */
printf("check if it will fail to set alarm with null callback parameter\n");
if (rte_eal_alarm_set(10 /* ms */, NULL, NULL) >= 0) {
printf("should not be successful to set alarm with null callback parameter\n");
return -1;
}
/* check if it will fail to remove alarm with null callback parameter */
printf("check if it will fail to remove alarm with null callback parameter\n");
if (rte_eal_alarm_cancel(NULL, NULL) == 0) {
printf("should not be successful to remove alarm with null callback parameter");
return -1;
}
return 0;
}
REGISTER_TEST_COMMAND(alarm_autotest, test_alarm);
|