a089d32033
Remove two alarm_autotest test cases which do bogus range check on Windows. Signed-off-by: Jie Zhou <jizh@linux.microsoft.com> Acked-by: Dmitry Kozlyuk <dmitry.kozliuk@gmail.com>
65 lines
1.6 KiB
C
65 lines
1.6 KiB
C
/* 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);
|