summaryrefslogtreecommitdiff
path: root/test/unit/expr/node_manager_white.h
diff options
context:
space:
mode:
authorTim King <taking@cs.nyu.edu>2013-11-19 20:57:15 -0500
committerTim King <taking@cs.nyu.edu>2013-11-20 15:37:18 -0500
commitbd8e9319aab69db90692f72bc52288329879eefc (patch)
tree7bfee530c06836827378fd5b9bd1f47bb4f1eea1 /test/unit/expr/node_manager_white.h
parentf806a8eedf01753116c225b4c1a5e29543fda370 (diff)
Changing the number of bits allocated per field in node values.
Diffstat (limited to 'test/unit/expr/node_manager_white.h')
-rw-r--r--test/unit/expr/node_manager_white.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/unit/expr/node_manager_white.h b/test/unit/expr/node_manager_white.h
index 26872846e..b272cb692 100644
--- a/test/unit/expr/node_manager_white.h
+++ b/test/unit/expr/node_manager_white.h
@@ -69,8 +69,10 @@ public:
TS_ASSERT_THROWS_NOTHING(nb.realloc(20000));
TS_ASSERT_THROWS_NOTHING(nb.realloc(60000));
TS_ASSERT_THROWS_NOTHING(nb.realloc(65535));
+ TS_ASSERT_THROWS_NOTHING(nb.realloc(65536));
+ TS_ASSERT_THROWS_NOTHING(nb.realloc(67108863));
#ifdef CVC4_ASSERTIONS
- TS_ASSERT_THROWS(nb.realloc(65536), AssertionException);
+ TS_ASSERT_THROWS(nb.realloc(67108863), AssertionException);
#endif /* CVC4_ASSERTIONS */
}
};
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback