18 Star 36 Fork 76

openEuler / UniProton

 / 详情

【2203 sp1】clock_gettime返回值错误, errno设置错误

已验收
缺陷
创建于  
2022-12-11 22:35

【标题描述】clock_gettime返回值错误, errno设置错误
【环境信息】
stm32f407
如果有特殊组网,请提供网络拓扑图
【问题复现步骤】

/*   
 * Copyright (c) 2002, Intel Corporation. All rights reserved.
 * Created by:  julie.n.fleischer REMOVE-THIS AT intel DOT com
 * This file is licensed under the GPL license.  For the full content
 * of this license, see the COPYING file at the top level of this 
 * source tree.

   Test that clock_gettime() sets errno to EINVAL if clock_id does not
   specify a known clock.
 */
#include <stdio.h>
#include <time.h>
#include <errno.h>
#include "posixtest.h"

#define INVALIDCLOCK 9999
int clock_gettime_8_1(int argc, char *argv[])
{
	struct timespec tp;

	if (clock_gettime(INVALIDCLOCK, &tp) == -1) {
		if (EINVAL == errno) {
			printf("Test PASSED\n");
			return PTS_PASS;
		} else {
			printf("errno not set to EINVAL\n");
			printf("Test FAILED\n");
			return PTS_FAIL;
		}
	} else {
		printf("clock_gettime() did not return failure\n");
		return PTS_UNRESOLVED;
	}

	printf("This code should not be executed.\n");
	return PTS_UNRESOLVED;
}

【预期结果】
测试通过
【实际结果】
测试失败
【附件信息】
输入图片说明

评论 (1)

saarloos 创建了缺陷

Hi saarloos, welcome to the openEuler Community.
I'm the Bot here serving you. You can find the instructions on how to interact with me at Here.
If you have any questions, please contact the SIG: sig-embedded, and any of the maintainers: @wl1587 , @beiling.xie , @linzichang , @Wayne Ren

openeuler-ci-bot 添加了
 
sig/sig-embedded
标签
saarloos 修改了描述
saarloos 任务状态待办的 修改为已验收

登录 后才可以发表评论

状态
负责人
项目
里程碑
Pull Requests
关联的 Pull Requests 被合并后可能会关闭此 issue
分支
开始日期   -   截止日期
-
置顶选项
优先级
预计工期 (小时)
参与者(2)
5329419 openeuler ci bot 1632792936
1
https://gitee.com/openeuler/UniProton.git
git@gitee.com:openeuler/UniProton.git
openeuler
UniProton
UniProton

搜索帮助

14c37bed 8189591 565d56ea 8189591