blob: aafb4b64d6ee9d5c22985d5cecaeb61cee100db5 [file] [log] [blame]
Dmitry V. Levindad1eef2015-09-16 21:58:36 +00001/*
Dmitry V. Levin7fce7c02016-02-06 00:56:15 +00002 * This file is part of adjtimex strace test.
3 *
Dmitry V. Levin463bb882016-01-04 23:31:09 +00004 * Copyright (c) 2015-2016 Dmitry V. Levin <ldv@altlinux.org>
Dmitry V. Levindad1eef2015-09-16 21:58:36 +00005 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. The name of the author may not be used to endorse or promote products
16 * derived from this software without specific prior written permission.
17 *
18 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
19 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
20 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
22 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
23 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 */
29
Dmitry V. Levin0c8853c2016-01-02 13:28:43 +000030#include "tests.h"
Dmitry V. Levindad1eef2015-09-16 21:58:36 +000031#include <stdio.h>
32#include <stdint.h>
Dmitry V. Levin7fce7c02016-02-06 00:56:15 +000033#include <string.h>
Dmitry V. Levindad1eef2015-09-16 21:58:36 +000034#include <sys/timex.h>
35
36int
37main(void)
38{
Dmitry V. Levin7fce7c02016-02-06 00:56:15 +000039 adjtimex(NULL);
40 printf("adjtimex\\(NULL\\) = -1 EFAULT \\(%m\\)\n");
Dmitry V. Levindad1eef2015-09-16 21:58:36 +000041
Dmitry V. Levin7fce7c02016-02-06 00:56:15 +000042 struct timex * const tx = tail_alloc(sizeof(*tx));
43 memset(tx, 0, sizeof(*tx));
44
45 int state = adjtimex(tx);
Dmitry V. Levindad1eef2015-09-16 21:58:36 +000046 if (state < 0)
Dmitry V. Levin463bb882016-01-04 23:31:09 +000047 perror_msg_and_skip("adjtimex");
Dmitry V. Levindad1eef2015-09-16 21:58:36 +000048
49 printf("adjtimex\\(\\{modes=0, offset=%jd, freq=%jd, maxerror=%jd"
50 ", esterror=%jd, status=%s, constant=%jd, precision=%jd"
51 ", tolerance=%jd, time={%jd, %jd}, tick=%jd, ppsfreq=%jd"
52 ", jitter=%jd, shift=%d, stabil=%jd, jitcnt=%jd, calcnt=%jd"
Dmitry V. Levin0dbb7ac2015-09-16 23:15:55 +000053 ", errcnt=%jd, stbcnt=%jd"
54#ifdef HAVE_STRUCT_TIMEX_TAI
55 ", tai=%d"
56#endif
57 "\\}\\) = %d \\(TIME_[A-Z]+\\)\n",
Dmitry V. Levin7fce7c02016-02-06 00:56:15 +000058 (intmax_t) tx->offset,
59 (intmax_t) tx->freq,
60 (intmax_t) tx->maxerror,
61 (intmax_t) tx->esterror,
62 tx->status ? "STA_[A-Z]+(\\|STA_[A-Z]+)*" : "0",
63 (intmax_t) tx->constant,
64 (intmax_t) tx->precision,
65 (intmax_t) tx->tolerance,
66 (intmax_t) tx->time.tv_sec,
67 (intmax_t) tx->time.tv_usec,
68 (intmax_t) tx->tick,
69 (intmax_t) tx->ppsfreq,
70 (intmax_t) tx->jitter,
71 tx->shift,
72 (intmax_t) tx->stabil,
73 (intmax_t) tx->jitcnt,
74 (intmax_t) tx->calcnt,
75 (intmax_t) tx->errcnt,
76 (intmax_t) tx->stbcnt,
Dmitry V. Levin0dbb7ac2015-09-16 23:15:55 +000077#ifdef HAVE_STRUCT_TIMEX_TAI
Dmitry V. Levin7fce7c02016-02-06 00:56:15 +000078 tx->tai,
Dmitry V. Levin0dbb7ac2015-09-16 23:15:55 +000079#endif
Dmitry V. Levindad1eef2015-09-16 21:58:36 +000080 state);
81
82 return 0;
83}