diff options
author | Alex AUVOLAT <alexis211@gmail.com> | 2012-05-01 10:39:33 +0200 |
---|---|---|
committer | Alex AUVOLAT <alexis211@gmail.com> | 2012-05-01 10:39:33 +0200 |
commit | 66b32658d2e5aa99493dcb3abcb73cdb2cc6f0b5 (patch) | |
tree | 3b728f4c8dc93f6ab9237af3d32410346b617ae8 /src/kernel/core | |
parent | 07b15b375ee7cc87f476200b2fd6205959ac0ba4 (diff) | |
download | TCE-66b32658d2e5aa99493dcb3abcb73cdb2cc6f0b5.tar.gz TCE-66b32658d2e5aa99493dcb3abcb73cdb2cc6f0b5.zip |
It's alive! Or is it? No, it's not.
Diffstat (limited to 'src/kernel/core')
-rw-r--r-- | src/kernel/core/test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kernel/core/test.c b/src/kernel/core/test.c index 867a4b5..8f7b32c 100644 --- a/src/kernel/core/test.c +++ b/src/kernel/core/test.c @@ -8,7 +8,7 @@ static void test_run_kmalloc() { int alloc_sizes[8] = { 10, 32, 16, 20, 64, 128, 32, 48 }; int *ptrs[8] = { 0 }; int t, i; - for (t = 0; t < 2; t++) { + for (t = 0; t < 4; t++) { for (i = 0; i < 8; i++) { monitor_writeDec(i); monitor_write(" alloc "); monitor_writeDec(alloc_sizes[i]); monitor_write(" : "); |