diff --git a/README.md b/README.md index 0a34d68..12736ec 100644 --- a/README.md +++ b/README.md @@ -102,7 +102,7 @@ Build a Linux x86-64 ELF executable from `examples/hello` and run it: ### Platform - [x] Linux -- [ ] Mac +- [x] Mac - [ ] Windows ## Documentation diff --git a/tests/programs/out-of-memory.q b/tests/programs/out-of-memory.q index 4b7603f..e9ead5b 100644 --- a/tests/programs/out-of-memory.q +++ b/tests/programs/out-of-memory.q @@ -2,5 +2,5 @@ import mem main() { address := mem.alloc(1024 * 1024 * 1024 * 1024) - assert address < 0 + assert address < 0 || address == 12 } \ No newline at end of file