All of lore.kernel.org
 help / color / mirror / Atom feed
* [LTP] [PATCH] clocks/invaliddates.c: Remove outdated clock time setting
@ 2020-03-20  7:08 Yang Xu
  2020-03-24  8:46 ` Li Wang
  0 siblings, 1 reply; 2+ messages in thread
From: Yang Xu @ 2020-03-20  7:08 UTC (permalink / raw)
  To: ltp

For CLOCK_REALTIME, attempting to set the time to a value less than
the current value of the CLOCK_MONOTONIC will trigger a EINVAL error
since linux 4.3. Remove zero and also increase threshold for delta with
personal experience.

Signed-off-by: Yang Xu <xuyang2018.jy@cn.fujitsu.com>
---
 .../functional/timers/clocks/invaliddates.c                | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/testcases/open_posix_testsuite/functional/timers/clocks/invaliddates.c b/testcases/open_posix_testsuite/functional/timers/clocks/invaliddates.c
index 2ebf7f0b0..face334fd 100644
--- a/testcases/open_posix_testsuite/functional/timers/clocks/invaliddates.c
+++ b/testcases/open_posix_testsuite/functional/timers/clocks/invaliddates.c
@@ -5,7 +5,7 @@
  * of this license, see the COPYING file at the top level of this
  * source tree.
  *
- * Test that the clock time can be set to 0, a large number, Y2K
+ * Test that the clock time can be set to a large number, Y2K
  * critical dates, and times around daylight savings.
  *
  * Test for CLOCK_REALTIME.  (N/A for CLOCK_MONOTONIC as that clock
@@ -16,13 +16,12 @@
 #include <stdint.h>
 #include "posixtest.h"
 
-#define NUMTESTS 6
+#define NUMTESTS 5
 
 #define ACCEPTABLESECDELTA 0
-#define ACCEPTABLENSECDELTA 5000
+#define ACCEPTABLENSECDELTA 5000000
 
 static int testtimes[NUMTESTS][2] = {
-	{0, 0},			// zero
 	{INT32_MAX, 999999999},	// large number
 	{946713600, 999999999},	// Y2K - Jan 1, 2000
 	{951811200, 999999999},	// Y2K - Feb 29, 2000
-- 
2.18.1




^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [LTP] [PATCH] clocks/invaliddates.c: Remove outdated clock time setting
  2020-03-20  7:08 [LTP] [PATCH] clocks/invaliddates.c: Remove outdated clock time setting Yang Xu
@ 2020-03-24  8:46 ` Li Wang
  0 siblings, 0 replies; 2+ messages in thread
From: Li Wang @ 2020-03-24  8:46 UTC (permalink / raw)
  To: ltp

Hi Xu,

Tested and pushed. Thanks for the fix.

-- 
Regards,
Li Wang
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.linux.it/pipermail/ltp/attachments/20200324/9de8482f/attachment.htm>

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2020-03-24  8:46 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-03-20  7:08 [LTP] [PATCH] clocks/invaliddates.c: Remove outdated clock time setting Yang Xu
2020-03-24  8:46 ` Li Wang

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.