forked from Imagelibrary/rtems
POSIX Signature Compliance Test for utmpx.h (GCI2018)
This commit is contained in:
@@ -1871,6 +1871,12 @@ lib_a_SOURCES = psxhdrs/devctl/posix_devctl.c \
|
||||
## lib_a_SOURCES += psxhdrs/sys/resource/setrlimit.c See ticket #3655
|
||||
## lib_a_SOURCES += psxhdrs/sys/statvfs/statvfs.c See ticket #3660
|
||||
## lib_a_SOURCES += psxhdrs/sys/statvfs/fstatvfs.c See ticket #3660
|
||||
## lib_a_SOURCES += psxhdrs/utmpx/setutxent.c See ticket #3661
|
||||
## lib_a_SOURCES += psxhdrs/utmpx/endutxent.c See ticket #3661
|
||||
## lib_a_SOURCES += psxhdrs/utmpx/getutxent.c See ticket #3661
|
||||
## lib_a_SOURCES += psxhdrs/utmpx/getutxid.c See ticket #3661
|
||||
## lib_a_SOURCES += psxhdrs/utmpx/getutxline.c See ticket #3661
|
||||
## lib_a_SOURCES += psxhdrs/utmpx/pututxline.c See ticket #3661
|
||||
endif
|
||||
|
||||
rtems_tests_PROGRAMS = $(psx_tests)
|
||||
|
||||
34
testsuites/psxtests/psxhdrs/utmpx/endutxent.c
Normal file
34
testsuites/psxtests/psxhdrs/utmpx/endutxent.c
Normal file
@@ -0,0 +1,34 @@
|
||||
/**
|
||||
* @file
|
||||
* @brief endutxent() API Conformance Test
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT (c) 2018.
|
||||
* Abhimanyu Raghuvanshi
|
||||
*
|
||||
* Permission to use, copy, modify, and/or distribute this software
|
||||
* for any purpose with or without fee is hereby granted.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
|
||||
* WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
|
||||
* WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR
|
||||
* BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES
|
||||
* OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
|
||||
* WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
|
||||
* ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
#endif
|
||||
|
||||
#include <utmpx.h>
|
||||
|
||||
int test(void);
|
||||
|
||||
int test(void)
|
||||
{
|
||||
endutxent();
|
||||
return (0);
|
||||
}
|
||||
34
testsuites/psxtests/psxhdrs/utmpx/getutxent.c
Normal file
34
testsuites/psxtests/psxhdrs/utmpx/getutxent.c
Normal file
@@ -0,0 +1,34 @@
|
||||
/**
|
||||
* @file
|
||||
* @brief getutxent() API Conformance Test
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT (c) 2018.
|
||||
* Abhimanyu Raghuvanshi
|
||||
*
|
||||
* Permission to use, copy, modify, and/or distribute this software
|
||||
* for any purpose with or without fee is hereby granted.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
|
||||
* WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
|
||||
* WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR
|
||||
* BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES
|
||||
* OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
|
||||
* WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
|
||||
* ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
#endif
|
||||
|
||||
#include <utmpx.h>
|
||||
|
||||
int test(void);
|
||||
|
||||
int test(void)
|
||||
{
|
||||
struct utmpx *a = getutxent();
|
||||
return !a;
|
||||
}
|
||||
36
testsuites/psxtests/psxhdrs/utmpx/getutxid.c
Normal file
36
testsuites/psxtests/psxhdrs/utmpx/getutxid.c
Normal file
@@ -0,0 +1,36 @@
|
||||
/**
|
||||
* @file
|
||||
* @brief getutxid() API Conformance Test
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT (c) 2018.
|
||||
* Abhimanyu Raghuvanshi
|
||||
*
|
||||
* Permission to use, copy, modify, and/or distribute this software
|
||||
* for any purpose with or without fee is hereby granted.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
|
||||
* WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
|
||||
* WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR
|
||||
* BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES
|
||||
* OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
|
||||
* WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
|
||||
* ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
#endif
|
||||
|
||||
#include <utmpx.h>
|
||||
|
||||
int test(void);
|
||||
|
||||
int test(void)
|
||||
{
|
||||
const struct utmpx b = {0};
|
||||
|
||||
struct utmpx *a = getutxid(&b);
|
||||
return !a;
|
||||
}
|
||||
37
testsuites/psxtests/psxhdrs/utmpx/getutxline.c
Normal file
37
testsuites/psxtests/psxhdrs/utmpx/getutxline.c
Normal file
@@ -0,0 +1,37 @@
|
||||
/**
|
||||
* @file
|
||||
* @brief getutxline() API Conformance Test
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT (c) 2018.
|
||||
* Abhimanyu Raghuvanshi
|
||||
*
|
||||
* Permission to use, copy, modify, and/or distribute this software
|
||||
* for any purpose with or without fee is hereby granted.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
|
||||
* WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
|
||||
* WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR
|
||||
* BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES
|
||||
* OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
|
||||
* WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
|
||||
* ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
#endif
|
||||
|
||||
#include <utmpx.h>
|
||||
|
||||
int test(void);
|
||||
|
||||
int test(void)
|
||||
{
|
||||
const struct utmpx b = {0};
|
||||
struct utmpx *a;
|
||||
|
||||
a = getutxline(&b);
|
||||
return !a;
|
||||
}
|
||||
37
testsuites/psxtests/psxhdrs/utmpx/pututxline.c
Normal file
37
testsuites/psxtests/psxhdrs/utmpx/pututxline.c
Normal file
@@ -0,0 +1,37 @@
|
||||
/**
|
||||
* @file
|
||||
* @brief pututxline() API Conformance Test
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT (c) 2018.
|
||||
* Abhimanyu Raghuvanshi
|
||||
*
|
||||
* Permission to use, copy, modify, and/or distribute this software
|
||||
* for any purpose with or without fee is hereby granted.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
|
||||
* WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
|
||||
* WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR
|
||||
* BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES
|
||||
* OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
|
||||
* WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
|
||||
* ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
#endif
|
||||
|
||||
#include <utmpx.h>
|
||||
|
||||
int test(void);
|
||||
|
||||
int test(void)
|
||||
{
|
||||
const struct utmpx b = {0};
|
||||
struct utmpx *a;
|
||||
|
||||
a = pututxline(&b);
|
||||
return !a;
|
||||
}
|
||||
34
testsuites/psxtests/psxhdrs/utmpx/setutxent.c
Normal file
34
testsuites/psxtests/psxhdrs/utmpx/setutxent.c
Normal file
@@ -0,0 +1,34 @@
|
||||
/**
|
||||
* @file
|
||||
* @brief setutxent() API Conformance Test
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT (c) 2018.
|
||||
* Abhimanyu Raghuvanshi
|
||||
*
|
||||
* Permission to use, copy, modify, and/or distribute this software
|
||||
* for any purpose with or without fee is hereby granted.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
|
||||
* WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
|
||||
* WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR
|
||||
* BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES
|
||||
* OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
|
||||
* WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
|
||||
* ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
#endif
|
||||
|
||||
#include <utmpx.h>
|
||||
|
||||
int test(void);
|
||||
|
||||
int test(void)
|
||||
{
|
||||
setutxent();
|
||||
return (0);
|
||||
}
|
||||
Reference in New Issue
Block a user