Jens Alfke

Results 162 comments of Jens Alfke

App sandbox FTW! When I went to update my code, I remembered about the `xml:base` attribute, which establishes a base URL for all `` elements in & inside the element...

I think it would be OK to merge this, since it causes no real changes in "normal" supported builds. The conflicts are probably easy to resolve.

I added a small commit so that a vector search without an index now returns NoSuchIndex, not InvalidQuery, as per the meeting this afternoon.

The Windows build fails when starting the tests, with `LiteCore/tests/Debug: No such file or directory`. I confess I don't know why Windows puts the tests in a subdirectory like this,...

FYI, in a `Release` build the size of C4Tests.wasm is 4MB, and CppTests.wasm is 6.2MB. (In a `RelWithDebSym` build they're 10x larger (!), which I assume is all the debug...

To make the WASM smaller I - Built with `Release` instead of `RelWithDebInfo` - Enabled LTO - Forced `-Os` since the `MinSizeRel` build type doesn't seem to do anything with...

Here's a patch: ```diff diff --git a/lib/util_mosq.c b/lib/util_mosq.c index fda69801f4a827dff47eb5b6ec7c9e474a2693ae..598f3315192476ab3978917da3d7cdbf39aa786c 100644 --- a/lib/util_mosq.c +++ b/lib/util_mosq.c @@ -38,6 +38,10 @@ Contributors: # endif #endif +#if !defined(WITH_TLS) && defined(__APPLE__) +#include /* for...

The only remaining problem is that, on Windows, CppTests always hangs during "Continuous Fast Push". Ordinarily the test would time out after 5 minutes, so I think this is a...

I came up with some thread-safe macros `Check`, `Require`, `Info` that fall back to our regular `Assert` if called on a background thread. Didn’t fix Windows, though … same thing...

No idea why Windows failed this time. It was in the middle of running a test and then stopped with `script returned exit code -1`.