CI: disable self-test on macos-13

This commit is contained in:
Markus F.X.J. Oberhumer
2023-06-10 11:02:19 +02:00
parent 75e87a58da
commit c585774162
6 changed files with 40 additions and 6 deletions
+2
View File
@@ -252,8 +252,10 @@ void OutputFile::write(SPAN_0(const void) buf, int len) {
return;
mem_size_assert(1, len); // sanity check
errno = 0;
#if WITH_XSPAN >= 2
NO_fprintf(stderr, "write %p %zd (%p) %d\n", buf.raw_ptr(), buf.raw_size_in_bytes(),
buf.raw_base(), len);
#endif
long l = acc_safe_hwrite(_fd, raw_bytes(buf, len), len);
if (l != len)
throwIOException("write error", errno);