summaryrefslogtreecommitdiff
path: root/test/unit/memory.h
diff options
context:
space:
mode:
Diffstat (limited to 'test/unit/memory.h')
-rw-r--r--test/unit/memory.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/unit/memory.h b/test/unit/memory.h
index 64b1da51b..6da3c08b5 100644
--- a/test/unit/memory.h
+++ b/test/unit/memory.h
@@ -31,6 +31,8 @@
#include <sys/time.h>
#include <sys/resource.h>
+#include "util/Assert.h"
+
namespace CVC4 {
namespace test {
@@ -46,10 +48,20 @@ class WithLimitedMemory {
public:
WithLimitedMemory() {
+#ifdef __APPLE__
+ TS_FAIL("setrlimit() is broken on Mac, can't run memory tests.");
+ AlwaysAssert(false,
+ "setrlimit() is broken on Mac, can't run memory tests.");
+#endif /* __APPLE__ */
remember();
}
WithLimitedMemory(rlim_t amount) {
+#ifdef __APPLE__
+ TS_FAIL("setrlimit() is broken on Mac, can't run memory tests.");
+ AlwaysAssert(false,
+ "setrlimit() is broken on Mac, can't run memory tests.");
+#endif /* __APPLE__ */
remember();
set(amount);
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback