mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-11 09:50:12 +00:00
Preserve naming consistency for test cases.
Pointed out by: jmmv Sponsored by: EMC / Isilon storage division
This commit is contained in:
parent
e46fb7ab21
commit
f8eccd0a09
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=262781
@ -37,8 +37,8 @@ __FBSDID("$FreeBSD$");
|
||||
#include <unistd.h>
|
||||
#include <atf-c.h>
|
||||
|
||||
ATF_TC_WITHOUT_HEAD(dup2_simple);
|
||||
ATF_TC_BODY(dup2_simple, tc)
|
||||
ATF_TC_WITHOUT_HEAD(dup2__simple);
|
||||
ATF_TC_BODY(dup2__simple, tc)
|
||||
{
|
||||
int fd1, fd2;
|
||||
struct stat sb1, sb2;
|
||||
@ -71,7 +71,7 @@ ATF_TC_BODY(dup2__ebadf_when_2nd_arg_out_of_range, tc)
|
||||
ATF_TP_ADD_TCS(tp)
|
||||
{
|
||||
|
||||
ATF_TP_ADD_TC(tp, dup2_simple);
|
||||
ATF_TP_ADD_TC(tp, dup2__simple);
|
||||
ATF_TP_ADD_TC(tp, dup2__ebadf_when_2nd_arg_out_of_range);
|
||||
|
||||
return atf_no_error();
|
||||
|
Loading…
Reference in New Issue
Block a user