Linux 4.19.133
[linux/fpc-iii.git] / tools / testing / selftests / timers / skew_consistency.c
blob022b711c78ee51303dd33399753f61e8b26929d0
1 /* ADJ_FREQ Skew consistency test
2 * by: john stultz (johnstul@us.ibm.com)
3 * (C) Copyright IBM 2012
4 * Licensed under the GPLv2
6 * NOTE: This is a meta-test which cranks the ADJ_FREQ knob back
7 * and forth and watches for consistency problems. Thus this test requires
8 * that the inconsistency-check tests be present in the same directory it
9 * is run from.
11 * To build:
12 * $ gcc skew_consistency.c -o skew_consistency -lrt
14 * This program is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation, either version 2 of the License, or
17 * (at your option) any later version.
19 * This program is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
26 #include <stdio.h>
27 #include <stdlib.h>
28 #include <unistd.h>
29 #include <sys/time.h>
30 #include <sys/timex.h>
31 #include <time.h>
32 #include <sys/types.h>
33 #include <sys/stat.h>
34 #include <fcntl.h>
35 #include <stdlib.h>
36 #include <string.h>
37 #include <sys/wait.h>
38 #include "../kselftest.h"
40 #define NSEC_PER_SEC 1000000000LL
42 int main(int argv, char **argc)
44 struct timex tx;
45 int ret, ppm;
46 pid_t pid;
49 printf("Running Asynchronous Frequency Changing Tests...\n");
51 pid = fork();
52 if (!pid)
53 return system("./inconsistency-check -c 1 -t 600");
55 ppm = 500;
56 ret = 0;
58 while (pid != waitpid(pid, &ret, WNOHANG)) {
59 ppm = -ppm;
60 tx.modes = ADJ_FREQUENCY;
61 tx.freq = ppm << 16;
62 adjtimex(&tx);
63 usleep(500000);
66 /* Set things back */
67 tx.modes = ADJ_FREQUENCY;
68 tx.offset = 0;
69 adjtimex(&tx);
72 if (ret) {
73 printf("[FAILED]\n");
74 return ksft_exit_fail();
76 printf("[OK]\n");
77 return ksft_exit_pass();