Skip to content

Commit c0fead2

Browse files
committed
Rename vector -> vectorsize in relational tests
1 parent 3aa1fe9 commit c0fead2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/regression/36-apron/56-vector-eager-downsize.c renamed to tests/regression/36-apron/56-vectorsize-eager-downsize.c

File renamed without changes.

tests/regression/36-apron/57-vector-lazy-downsize.c renamed to tests/regression/36-apron/57-vectorsize-lazy-downsize.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,9 +94,9 @@ int main() {
9494
capacity = 1;
9595
assert(used >= 0);
9696
assert(capacity >= 1);
97-
assert(capacity <= MAX_CAPACITY); // TODO
97+
assert(capacity <= MAX_CAPACITY);
9898
assert(used <= capacity);
99-
assert(used >= capacity - used - 1); // TODO: 2 * used >= capacity - 1, but without overflow in *
99+
assert(used >= capacity - used - 1); // 2 * used >= capacity - 1, but without overflow in *
100100

101101
pthread_t worker1;
102102
pthread_t worker2;

0 commit comments

Comments
 (0)