18 Star 37 Fork 79

openEuler / UniProton

 / 详情

【2203 sp1】sched_get_priority_min(-1)返回值错误

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

【标题描述】能够简要描述问题:说明什么场景下,做了什么操作,出现什么问题(尽量使用正向表达方式)
【环境信息】
STM32F407
如果有特殊组网,请提供网络拓扑图
【问题复现步骤】

/* 
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License version 2.
 *
 *  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.
 *
 *
 * Test that sched_get_priority_min() returns -1 on failure
 */
#include <stdio.h>
#include <sched.h>
#include <errno.h>
#include "posixtest.h"

int sched_get_priority_min_2_1(int argc, char **argv)
{	       
	int result = -1;
	
	result = sched_get_priority_min(-1);
	
	if(result == -1 && errno == EINVAL ) {
		printf("Test PASSED\n");
		return PTS_PASS;
	}

	if (result != -1) {
		printf("did not returned -1.\n");
		return PTS_FAIL;
	}

	if (errno != EINVAL) {
		printf("%s\n", "error is not EINVAL");
		return PTS_FAIL;
	} else {
		printf("Unresolved test error\n");
		return PTS_UNRESOLVED;	
	}
		
	printf("This code should not be executed.\n");
        return PTS_UNRESOLVED;
}



【预期结果】
测试通过
【实际结果】
测试失败
【附件信息】
比如系统message日志/组件日志、dump信息、图片等

评论 (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 任务状态待办的 修改为已验收

登录 后才可以发表评论

状态
负责人
项目
里程碑
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

搜索帮助