summaryrefslogtreecommitdiff
path: root/test/unit/context/cdmap_black.h
diff options
context:
space:
mode:
authorTim King <taking@cs.nyu.edu>2012-04-02 22:49:39 +0000
committerTim King <taking@cs.nyu.edu>2012-04-02 22:49:39 +0000
commit5ca6471b95ee239a8ef2fcedd8efa9ea75a3a260 (patch)
tree3ca0e7a3d0d8255a26f86c99aedf62ba78187211 /test/unit/context/cdmap_black.h
parent1a558a30bec496444742ed75c0a6973d9789daf7 (diff)
Fix for broken unit tests from the previous commit.
Diffstat (limited to 'test/unit/context/cdmap_black.h')
-rw-r--r--test/unit/context/cdmap_black.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/unit/context/cdmap_black.h b/test/unit/context/cdmap_black.h
index 281d814aa..0358d1edd 100644
--- a/test/unit/context/cdmap_black.h
+++ b/test/unit/context/cdmap_black.h
@@ -933,9 +933,9 @@ public:
//Debug.on("gc");
//Debug.on("context");
- CDHashMap<int, CDList_BE<myint>*, int_hasher> map(d_context);
+ CDHashMap<int, CDList<myint>*, int_hasher> map(d_context);
- CDList_BE<myint> *list1, *list2, *list3, *list4;
+ CDList<myint> *list1, *list2, *list3, *list4;
TS_ASSERT(map.find(1) == map.end());
TS_ASSERT(map.find(2) == map.end());
@@ -947,10 +947,10 @@ public:
int* x = (int*) d_context->getCMM()->newData(sizeof(int));
- list1 = new(d_context->getCMM()) CDList_BE<myint>(true, d_context);
- list2 = new(d_context->getCMM()) CDList_BE<myint>(true, d_context);
- list3 = new(d_context->getCMM()) CDList_BE<myint>(true, d_context);
- list4 = new(d_context->getCMM()) CDList_BE<myint>(true, d_context);
+ list1 = new(d_context->getCMM()) CDList<myint>(true, d_context);
+ list2 = new(d_context->getCMM()) CDList<myint>(true, d_context);
+ list3 = new(d_context->getCMM()) CDList<myint>(true, d_context);
+ list4 = new(d_context->getCMM()) CDList<myint>(true, d_context);
list1->push_back(1);
list2->push_back(2);
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback