blob: 26fc4deb462b29ee189d6552790dd70513284c15 [file] [log] [blame]
subrata_modak6155aed2009-04-15 06:29:16 +00001/******************************************************************************/
2/* Copyright (c) M. Koehrer <mathias_koehrer@arcor.de>, 2009 */
3/* */
4/* LKML Reference: http://lkml.org/lkml/2009/4/9/89 */
5/* */
6/* This program is free software; you can redistribute it and/or modify */
7/* it under the terms of the GNU General Public License as published by */
8/* the Free Software Foundation; either version 2 of the License, or */
9/* (at your option) any later version. */
10/* */
11/* This program is distributed in the hope that it will be useful, */
12/* but WITHOUT ANY WARRANTY; without even the implied warranty of */
13/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See */
14/* the GNU General Public License for more details. */
15/* */
16/* You should have received a copy of the GNU General Public License */
17/* along with this program; if not, write to the Free Software */
Wanlong Gao4548c6c2012-10-19 18:03:36 +080018/* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */
subrata_modak6155aed2009-04-15 06:29:16 +000019/* */
20/******************************************************************************/
21/******************************************************************************/
22/* */
23/* File: clock_nanosleep2_01.c */
24/* */
25/* Description: This tests the clock_nanosleep2-out() syscall */
26/* */
27/* Usage: <for command-line> */
28/* clock_nanosleep2_01 [-c n] [-e][-i n] [-I x] [-p x] [-t] */
29/* where, -c n : Run n copies concurrently. */
30/* -e : Turn on errno logging. */
31/* -i n : Execute test n times. */
32/* -I x : Execute test for x seconds. */
33/* -P x : Pause for x seconds between iterations. */
34/* -t : Turn on syscall timing. */
35/* */
36/* Total Tests: 1 */
37/* */
38/* Test Name: clock_nanosleep2_01 */
39/******************************************************************************/
40#define _GNU_SOURCE
41#include <stdio.h>
42#include <time.h>
43#include <unistd.h>
44#include <sys/syscall.h>
45#include <linux/unistd.h>
46
subrata_modak6155aed2009-04-15 06:29:16 +000047#include "test.h"
subrata_modak6155aed2009-04-15 06:29:16 +000048#include "linux_syscall_numbers.h"
49
Cyril Hrubisfdce7d52013-04-04 18:35:48 +020050char *TCID = "clock_nanosleep2_01";
Wanlong Gao354ebb42012-12-07 10:10:04 +080051int testno;
Cyril Hrubisfdce7d52013-04-04 18:35:48 +020052int TST_TOTAL = 1;
subrata_modak6155aed2009-04-15 06:29:16 +000053
54/* Extern Global Functions */
55/******************************************************************************/
56/* */
57/* Function: cleanup */
58/* */
59/* Description: Performs all one time clean up for this test on successful */
60/* completion, premature exit or failure. Closes all temporary */
61/* files, removes all temporary directories exits the test with */
62/* appropriate return code by calling tst_exit() function. */
63/* */
64/* Input: None. */
65/* */
66/* Output: None. */
67/* */
68/* Return: On failure - Exits calling tst_exit(). Non '0' return code. */
69/* On success - Exits calling tst_exit(). With '0' return code. */
70/* */
71/******************************************************************************/
Mike Frysingerc57fba52014-04-09 18:56:30 -040072void cleanup(void)
Wanlong Gao354ebb42012-12-07 10:10:04 +080073{
Garrett Cooper2c282152010-12-16 00:55:50 -080074
Wanlong Gao354ebb42012-12-07 10:10:04 +080075 tst_rmdir();
subrata_modak6155aed2009-04-15 06:29:16 +000076
Wanlong Gao354ebb42012-12-07 10:10:04 +080077 tst_exit();
subrata_modak6155aed2009-04-15 06:29:16 +000078}
79
80/* Local Functions */
81/******************************************************************************/
82/* */
83/* Function: setup */
84/* */
85/* Description: Performs all one time setup for this test. This function is */
86/* typically used to capture signals, create temporary dirs */
87/* and temporary files that may be used in the course of this */
88/* test. */
89/* */
90/* Input: None. */
91/* */
92/* Output: None. */
93/* */
94/* Return: On failure - Exits by calling cleanup(). */
95/* On success - returns 0. */
96/* */
97/******************************************************************************/
Mike Frysingerc57fba52014-04-09 18:56:30 -040098void setup(void)
Wanlong Gao354ebb42012-12-07 10:10:04 +080099{
100 /* Capture signals if any */
101 /* Create temporary directories */
102 TEST_PAUSE;
103 tst_tmpdir();
subrata_modak6155aed2009-04-15 06:29:16 +0000104}
105
Wanlong Gao354ebb42012-12-07 10:10:04 +0800106const clockid_t CLOCK_TO_USE = CLOCK_MONOTONIC;
107static int clock_nanosleep2(clockid_t clock_id, int flags,
108 const struct timespec *req, struct timespec *rem)
subrata_modak6155aed2009-04-15 06:29:16 +0000109{
Jan Stancek359980f2013-02-15 10:16:05 +0100110 return ltp_syscall(__NR_clock_nanosleep, clock_id, flags, req, rem);
subrata_modak6155aed2009-04-15 06:29:16 +0000111}
112
Wanlong Gao354ebb42012-12-07 10:10:04 +0800113int main(int ac, char **av)
114{
subrata_modak6155aed2009-04-15 06:29:16 +0000115 int i;
Cyril Hrubis89af32a2012-10-24 16:39:11 +0200116 int lc;
Cyril Hrubis0b9589f2014-05-27 17:40:33 +0200117 const char *msg;
subrata_modak6155aed2009-04-15 06:29:16 +0000118 struct timespec ts;
Garrett Cooper2c282152010-12-16 00:55:50 -0800119
Wanlong Gao354ebb42012-12-07 10:10:04 +0800120 if ((msg = parse_opts(ac, av, NULL, NULL)) != NULL) {
121 tst_brkm(TBROK, NULL, "OPTION PARSING ERROR - %s", msg);
Wanlong Gao354ebb42012-12-07 10:10:04 +0800122 }
subrata_modak6155aed2009-04-15 06:29:16 +0000123
Wanlong Gao354ebb42012-12-07 10:10:04 +0800124 setup();
subrata_modak6155aed2009-04-15 06:29:16 +0000125
Wanlong Gao354ebb42012-12-07 10:10:04 +0800126 for (lc = 0; TEST_LOOPING(lc); ++lc) {
Caspar Zhangd59a6592013-03-07 14:59:12 +0800127 tst_count = 0;
Wanlong Gao354ebb42012-12-07 10:10:04 +0800128 for (testno = 0; testno < TST_TOTAL; ++testno) {
subrata_modak6155aed2009-04-15 06:29:16 +0000129 TEST(clock_gettime(CLOCK_TO_USE, &ts));
Wanlong Gao354ebb42012-12-07 10:10:04 +0800130 for (i = 0; i <= 50; i++) {
subrata_modak6155aed2009-04-15 06:29:16 +0000131 ts.tv_sec++;
Wanlong Gao354ebb42012-12-07 10:10:04 +0800132 TEST(clock_nanosleep2
133 (CLOCK_TO_USE, TIMER_ABSTIME, &ts, NULL));
134 if (TEST_ERRNO) {
Cyril Hrubis9fa8ad02014-12-16 13:20:49 +0100135 tst_brkm(TFAIL,
136 cleanup, "%s failed - errno = %d : %s",
Wanlong Gao354ebb42012-12-07 10:10:04 +0800137 TCID, TEST_ERRNO,
138 strerror(TEST_ERRNO));
Wanlong Gao354ebb42012-12-07 10:10:04 +0800139 }
140 tst_resm(TINFO, "Iteration = %i", i);
subrata_modak6155aed2009-04-15 06:29:16 +0000141 }
Wanlong Gao354ebb42012-12-07 10:10:04 +0800142 tst_resm(TPASS, "clock_nanosleep2() passed");
subrata_modak6155aed2009-04-15 06:29:16 +0000143 }
Wanlong Gao354ebb42012-12-07 10:10:04 +0800144 }
145 tst_exit();
Chris Dearmanec6edca2012-10-17 19:54:01 -0700146}