aboutsummaryrefslogtreecommitdiffstats
path: root/tests/alloc/AllocTest.cpp
diff options
context:
space:
mode:
authorJacob Erlbeck <jerlbeck@sysmocom.de>2015-06-30 13:40:18 +0200
committerJacob Erlbeck <jerlbeck@sysmocom.de>2015-07-01 13:22:30 +0200
commit4d4fb6597592dc16795868ab24cb9063765c5fb9 (patch)
tree5c9caced02dfdf64c6fec87a1a0cf62da7bc143d /tests/alloc/AllocTest.cpp
parent8cee5c6d06ebc743414df3b3d8ea4af462db0851 (diff)
alloc: Skip common TS without free USF when rating (TODO)
Diffstat (limited to 'tests/alloc/AllocTest.cpp')
-rw-r--r--tests/alloc/AllocTest.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/alloc/AllocTest.cpp b/tests/alloc/AllocTest.cpp
index 931a273c..eefa3b69 100644
--- a/tests/alloc/AllocTest.cpp
+++ b/tests/alloc/AllocTest.cpp
@@ -494,10 +494,10 @@ int main(int argc, char **argv)
test_alloc_a();
test_alloc_b();
test_successive_allocation(alloc_algorithm_a, 1, 1, 32, "algorithm A");
- test_successive_allocation(alloc_algorithm_b, 10, 10, 30, "algorithm B class 10");
- test_successive_allocation(alloc_algorithm_b, 12, 12, 30, "algorithm B class 12");
+ test_successive_allocation(alloc_algorithm_b, 10, 10, 32, "algorithm B class 10");
+ test_successive_allocation(alloc_algorithm_b, 12, 12, 32, "algorithm B class 12");
test_successive_allocation(alloc_algorithm_b, 1, 12, 32, "algorithm B class 1-12");
- test_successive_allocation(alloc_algorithm_b, 1, 29, 27, "algorithm B class 1-29");
+ test_successive_allocation(alloc_algorithm_b, 1, 29, 32, "algorithm B class 1-29");
return EXIT_SUCCESS;
}