=== modified file 'tests/unit-tests/graphics/mesa/test_ipc_operations.cpp'
--- tests/unit-tests/graphics/mesa/test_ipc_operations.cpp	2016-05-06 01:56:46 +0000
+++ tests/unit-tests/graphics/mesa/test_ipc_operations.cpp	2016-08-08 10:35:41 +0000
@@ -84,7 +84,11 @@
         EXPECT_CALL(mock_buffer_msg, pack_fd(mtd::RawFdMatcher(native_handle.fd[i])));
     for(auto i = 0; i < native_handle.data_items; i++)
         EXPECT_CALL(mock_buffer_msg, pack_data(native_handle.data[i]));
+#ifndef __clang__
+    // FIXME: Why can't clang compile this on yakkety (with the
+    //        gcc6 headers)? (LP: #1609612)
     EXPECT_CALL(mock_buffer_msg, pack_stride(dummy_stride));
+#endif
     EXPECT_CALL(mock_buffer_msg, pack_flags(testing::_));
     EXPECT_CALL(mock_buffer_msg, pack_size(dummy_size));
 

