From 4317feca0dc1a960693e378e42af159dd9a193c8 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Mon, 25 Jun 2018 23:17:06 +0300 Subject: Exclude timestamp test on MacOS, looks like broken strptime() --- tests/timestamp/driver.cxx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'tests/timestamp') diff --git a/tests/timestamp/driver.cxx b/tests/timestamp/driver.cxx index 69c3e57..72301c2 100644 --- a/tests/timestamp/driver.cxx +++ b/tests/timestamp/driver.cxx @@ -217,9 +217,10 @@ main () // assert (fail ("Apr 08 19:31:10 2016", "%b %d %H:%M:%S %Y %")); - // Error is not detected on FreeBSD 11 with Clang/libc++ 3.8.0. + // Error is not detected on FreeBSD 11 with Clang/libc++ 3.8.0 and on + // MacOS 10.13 Clang/libc++ 5.0. // -#ifndef __FreeBSD__ +#if !(defined(__FreeBSD__) || defined(__APPLE__)) assert (fail ("Apr 08 19:31:10", "%b %d %H:%M:%S %Y")); #endif -- cgit v1.1