projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6312553
)
Fix timespec_from_nsec test for 32-bit time_t
author
Jon Turney
<jon.turney@dronecode.org.uk>
Mon, 16 Sep 2019 14:25:33 +0000
(15:25 +0100)
committer
Adam Jackson
<ajax@redhat.com>
Tue, 17 Sep 2019 16:17:53 +0000
(12:17 -0400)
Since struct timespec's tv_sec member is of type time_t, adjust the
expected value to allow for the truncation which will occur with 32-bit
time_t.
Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Reviewed-by: Adam Jackson <ajax@redhat.com>
src/util/tests/timespec/timespec_test.cpp
patch
|
blob
|
history
diff --git
a/src/util/tests/timespec/timespec_test.cpp
b/src/util/tests/timespec/timespec_test.cpp
index 4182af0771adeff7788e17aba977d000b75e9f03..5005506f9fd157c03412cce96cc8af1500035fa4 100644
(file)
--- a/
src/util/tests/timespec/timespec_test.cpp
+++ b/
src/util/tests/timespec/timespec_test.cpp
@@
-206,7
+206,7
@@
TEST(timespec_test, timespec_from_nsec)
timespec_from_nsec(&a, UINT64_MAX);
EXPECT_EQ(a.tv_nsec, UINT64_MAX % NSEC_PER_SEC);
- EXPECT_EQ(a.tv_sec,
UINT64_MAX / NSEC_PER_SEC
);
+ EXPECT_EQ(a.tv_sec,
(time_t)(UINT64_MAX / NSEC_PER_SEC)
);
}
TEST(timespec_test, timespec_from_usec)