Dmitry V. Levin | dad1eef | 2015-09-16 21:58:36 +0000 | [diff] [blame] | 1 | /* |
Dmitry V. Levin | 7fce7c0 | 2016-02-06 00:56:15 +0000 | [diff] [blame] | 2 | * This file is part of adjtimex strace test. |
| 3 | * |
Dmitry V. Levin | 463bb88 | 2016-01-04 23:31:09 +0000 | [diff] [blame] | 4 | * Copyright (c) 2015-2016 Dmitry V. Levin <ldv@altlinux.org> |
Dmitry V. Levin | dad1eef | 2015-09-16 21:58:36 +0000 | [diff] [blame] | 5 | * 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. Levin | 0c8853c | 2016-01-02 13:28:43 +0000 | [diff] [blame] | 30 | #include "tests.h" |
Dmitry V. Levin | dad1eef | 2015-09-16 21:58:36 +0000 | [diff] [blame] | 31 | #include <stdio.h> |
| 32 | #include <stdint.h> |
Dmitry V. Levin | 7fce7c0 | 2016-02-06 00:56:15 +0000 | [diff] [blame] | 33 | #include <string.h> |
Dmitry V. Levin | dad1eef | 2015-09-16 21:58:36 +0000 | [diff] [blame] | 34 | #include <sys/timex.h> |
| 35 | |
| 36 | int |
| 37 | main(void) |
| 38 | { |
Dmitry V. Levin | 7fce7c0 | 2016-02-06 00:56:15 +0000 | [diff] [blame] | 39 | adjtimex(NULL); |
| 40 | printf("adjtimex\\(NULL\\) = -1 EFAULT \\(%m\\)\n"); |
Dmitry V. Levin | dad1eef | 2015-09-16 21:58:36 +0000 | [diff] [blame] | 41 | |
Dmitry V. Levin | 7fce7c0 | 2016-02-06 00:56:15 +0000 | [diff] [blame] | 42 | struct timex * const tx = tail_alloc(sizeof(*tx)); |
| 43 | memset(tx, 0, sizeof(*tx)); |
| 44 | |
| 45 | int state = adjtimex(tx); |
Dmitry V. Levin | dad1eef | 2015-09-16 21:58:36 +0000 | [diff] [blame] | 46 | if (state < 0) |
Dmitry V. Levin | 463bb88 | 2016-01-04 23:31:09 +0000 | [diff] [blame] | 47 | perror_msg_and_skip("adjtimex"); |
Dmitry V. Levin | dad1eef | 2015-09-16 21:58:36 +0000 | [diff] [blame] | 48 | |
| 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. Levin | 0dbb7ac | 2015-09-16 23:15:55 +0000 | [diff] [blame] | 53 | ", errcnt=%jd, stbcnt=%jd" |
| 54 | #ifdef HAVE_STRUCT_TIMEX_TAI |
| 55 | ", tai=%d" |
| 56 | #endif |
| 57 | "\\}\\) = %d \\(TIME_[A-Z]+\\)\n", |
Dmitry V. Levin | 7fce7c0 | 2016-02-06 00:56:15 +0000 | [diff] [blame] | 58 | (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. Levin | 0dbb7ac | 2015-09-16 23:15:55 +0000 | [diff] [blame] | 77 | #ifdef HAVE_STRUCT_TIMEX_TAI |
Dmitry V. Levin | 7fce7c0 | 2016-02-06 00:56:15 +0000 | [diff] [blame] | 78 | tx->tai, |
Dmitry V. Levin | 0dbb7ac | 2015-09-16 23:15:55 +0000 | [diff] [blame] | 79 | #endif |
Dmitry V. Levin | dad1eef | 2015-09-16 21:58:36 +0000 | [diff] [blame] | 80 | state); |
| 81 | |
| 82 | return 0; |
| 83 | } |