summaryrefslogtreecommitdiffhomepage
path: root/test/syscalls/linux/time.cc
diff options
context:
space:
mode:
authorgVisor bot <gvisor-bot@google.com>2020-03-03 13:48:00 -0800
committergVisor bot <gvisor-bot@google.com>2020-03-03 13:48:00 -0800
commitba8b8154e85c0230ebe25149fa6cf9d24a03441d (patch)
tree6cb0511cc4e462787edf4ef4f6b3710b6272f8b3 /test/syscalls/linux/time.cc
parent3aa97c893dbbf3945c8812ebf158306921343dc8 (diff)
parentdd1ed5c789ff72fd6bbacda0ff7c7acf9672d25a (diff)
Merge pull request #2008 from lubinszARM:pr_skip_vsyscall
PiperOrigin-RevId: 298683693
Diffstat (limited to 'test/syscalls/linux/time.cc')
-rw-r--r--test/syscalls/linux/time.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/syscalls/linux/time.cc b/test/syscalls/linux/time.cc
index 1ccb95733..e75bba669 100644
--- a/test/syscalls/linux/time.cc
+++ b/test/syscalls/linux/time.cc
@@ -26,6 +26,7 @@ namespace {
constexpr long kFudgeSeconds = 5;
+#if defined(__x86_64__) || defined(__i386__)
// Mimics the time(2) wrapper from glibc prior to 2.15.
time_t vsyscall_time(time_t* t) {
constexpr uint64_t kVsyscallTimeEntry = 0xffffffffff600400;
@@ -98,6 +99,7 @@ TEST(TimeTest, VsyscallGettimeofday_InvalidAddressSIGSEGV) {
reinterpret_cast<struct timezone*>(0x1)),
::testing::KilledBySignal(SIGSEGV), "");
}
+#endif
} // namespace