2008-09-18 12:35:30 +02:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2008, Swedish Institute of Computer Science.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. Neither the name of the Institute nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
* This file is part of the Contiki operating system.
|
|
|
|
*
|
|
|
|
*/
|
2016-01-29 20:56:34 +01:00
|
|
|
/*---------------------------------------------------------------------------*/
|
2008-09-18 12:35:30 +02:00
|
|
|
/**
|
|
|
|
* \file
|
|
|
|
* Basic test for CFS/Coffee.
|
|
|
|
* \author
|
|
|
|
* Nicolas Tsiftes <nvt@sics.se>
|
|
|
|
*/
|
2016-01-29 20:56:34 +01:00
|
|
|
/*---------------------------------------------------------------------------*/
|
2008-09-18 12:35:30 +02:00
|
|
|
#include "contiki.h"
|
|
|
|
#include "cfs/cfs.h"
|
|
|
|
#include "cfs/cfs-coffee.h"
|
|
|
|
#include "lib/crc16.h"
|
|
|
|
#include "lib/random.h"
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
2016-01-29 20:56:34 +01:00
|
|
|
/*---------------------------------------------------------------------------*/
|
2008-09-18 12:35:30 +02:00
|
|
|
PROCESS(testcoffee_process, "Test CFS/Coffee process");
|
|
|
|
AUTOSTART_PROCESSES(&testcoffee_process);
|
2016-01-29 20:56:34 +01:00
|
|
|
/*---------------------------------------------------------------------------*/
|
2016-01-29 20:56:34 +01:00
|
|
|
#define TEST_FAIL(x) error = (x); goto end;
|
2009-02-17 16:08:01 +01:00
|
|
|
#define FILE_SIZE 4096
|
2008-09-18 12:35:30 +02:00
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
static int
|
2011-09-05 21:25:01 +02:00
|
|
|
coffee_test_basic(void)
|
2008-09-18 12:35:30 +02:00
|
|
|
{
|
|
|
|
int error;
|
2008-11-13 15:46:50 +01:00
|
|
|
int wfd, rfd, afd;
|
2011-09-05 21:25:01 +02:00
|
|
|
unsigned char buf[256];
|
|
|
|
int r;
|
2008-09-18 12:35:30 +02:00
|
|
|
|
2008-11-13 15:46:50 +01:00
|
|
|
wfd = rfd = afd = -1;
|
2008-09-18 12:35:30 +02:00
|
|
|
|
|
|
|
for(r = 0; r < sizeof(buf); r++) {
|
|
|
|
buf[r] = r;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Test 1: Open for writing. */
|
|
|
|
wfd = cfs_open("T1", CFS_WRITE);
|
|
|
|
if(wfd < 0) {
|
2016-01-29 20:56:34 +01:00
|
|
|
TEST_FAIL(1);
|
2008-09-18 12:35:30 +02:00
|
|
|
}
|
|
|
|
|
2011-09-05 21:25:01 +02:00
|
|
|
/* Test 2 and 3: Write buffer. */
|
2008-09-18 12:35:30 +02:00
|
|
|
r = cfs_write(wfd, buf, sizeof(buf));
|
|
|
|
if(r < 0) {
|
2016-01-29 20:56:34 +01:00
|
|
|
TEST_FAIL(2);
|
2008-09-18 12:35:30 +02:00
|
|
|
} else if(r < sizeof(buf)) {
|
2016-01-29 20:56:34 +01:00
|
|
|
TEST_FAIL(3);
|
2008-09-18 12:35:30 +02:00
|
|
|
}
|
|
|
|
|
2011-09-05 21:25:01 +02:00
|
|
|
/* Test 4: Deny reading. */
|
2008-09-18 12:35:30 +02:00
|
|
|
r = cfs_read(wfd, buf, sizeof(buf));
|
|
|
|
if(r >= 0) {
|
2016-01-29 20:56:34 +01:00
|
|
|
TEST_FAIL(4);
|
2008-09-18 12:35:30 +02:00
|
|
|
}
|
|
|
|
|
2011-09-05 21:25:01 +02:00
|
|
|
/* Test 5: Open for reading. */
|
2008-09-18 12:35:30 +02:00
|
|
|
rfd = cfs_open("T1", CFS_READ);
|
|
|
|
if(rfd < 0) {
|
2016-01-29 20:56:34 +01:00
|
|
|
TEST_FAIL(5);
|
2008-09-18 12:35:30 +02:00
|
|
|
}
|
|
|
|
|
2011-09-05 21:25:01 +02:00
|
|
|
/* Test 6: Write to read-only file. */
|
2008-09-18 12:35:30 +02:00
|
|
|
r = cfs_write(rfd, buf, sizeof(buf));
|
|
|
|
if(r >= 0) {
|
2016-01-29 20:56:34 +01:00
|
|
|
TEST_FAIL(6);
|
2008-09-18 12:35:30 +02:00
|
|
|
}
|
|
|
|
|
2011-09-05 21:25:01 +02:00
|
|
|
/* Test 7 and 8: Read the buffer written in Test 2. */
|
2008-09-18 12:35:30 +02:00
|
|
|
memset(buf, 0, sizeof(buf));
|
|
|
|
r = cfs_read(rfd, buf, sizeof(buf));
|
|
|
|
if(r < 0) {
|
2016-01-29 20:56:34 +01:00
|
|
|
TEST_FAIL(7);
|
2008-09-18 12:35:30 +02:00
|
|
|
} else if(r < sizeof(buf)) {
|
2008-11-24 11:59:40 +01:00
|
|
|
printf("r=%d\n", r);
|
2016-01-29 20:56:34 +01:00
|
|
|
TEST_FAIL(8);
|
2008-09-18 12:35:30 +02:00
|
|
|
}
|
|
|
|
|
2011-09-05 21:25:01 +02:00
|
|
|
/* Test 9: Verify that the buffer is correct. */
|
2008-09-18 12:35:30 +02:00
|
|
|
for(r = 0; r < sizeof(buf); r++) {
|
|
|
|
if(buf[r] != r) {
|
|
|
|
printf("r=%d. buf[r]=%d\n", r, buf[r]);
|
2016-01-29 20:56:34 +01:00
|
|
|
TEST_FAIL(9);
|
2008-09-18 12:35:30 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-09-05 21:25:01 +02:00
|
|
|
/* Test 10: Seek to beginning. */
|
2009-02-27 15:28:02 +01:00
|
|
|
if(cfs_seek(wfd, 0, CFS_SEEK_SET) != 0) {
|
2016-01-29 20:56:34 +01:00
|
|
|
TEST_FAIL(10);
|
2008-09-18 12:35:30 +02:00
|
|
|
}
|
|
|
|
|
2011-09-05 21:25:01 +02:00
|
|
|
/* Test 11 and 12: Write to the log. */
|
2008-09-18 12:35:30 +02:00
|
|
|
r = cfs_write(wfd, buf, sizeof(buf));
|
|
|
|
if(r < 0) {
|
2016-01-29 20:56:34 +01:00
|
|
|
TEST_FAIL(11);
|
2008-09-18 12:35:30 +02:00
|
|
|
} else if(r < sizeof(buf)) {
|
2016-01-29 20:56:34 +01:00
|
|
|
TEST_FAIL(12);
|
2008-09-18 12:35:30 +02:00
|
|
|
}
|
|
|
|
|
2011-09-05 21:25:01 +02:00
|
|
|
/* Test 13 and 14: Read the data from the log. */
|
2009-02-27 15:28:02 +01:00
|
|
|
cfs_seek(rfd, 0, CFS_SEEK_SET);
|
2008-09-18 12:35:30 +02:00
|
|
|
memset(buf, 0, sizeof(buf));
|
|
|
|
r = cfs_read(rfd, buf, sizeof(buf));
|
|
|
|
if(r < 0) {
|
2016-05-29 22:01:40 +02:00
|
|
|
TEST_FAIL(13);
|
2008-09-18 12:35:30 +02:00
|
|
|
} else if(r < sizeof(buf)) {
|
2016-05-29 22:01:40 +02:00
|
|
|
TEST_FAIL(14);
|
2008-09-18 12:35:30 +02:00
|
|
|
}
|
|
|
|
|
2011-09-05 21:25:01 +02:00
|
|
|
/* Test 16: Verify that the data is correct. */
|
2008-09-18 12:35:30 +02:00
|
|
|
for(r = 0; r < sizeof(buf); r++) {
|
|
|
|
if(buf[r] != r) {
|
2016-05-29 22:01:40 +02:00
|
|
|
TEST_FAIL(15);
|
2008-09-18 12:35:30 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-09-05 21:25:01 +02:00
|
|
|
/* Test 17 to 20: Write a reversed buffer to the file. */
|
2008-09-18 12:35:30 +02:00
|
|
|
for(r = 0; r < sizeof(buf); r++) {
|
|
|
|
buf[r] = sizeof(buf) - r - 1;
|
|
|
|
}
|
2009-02-27 15:28:02 +01:00
|
|
|
if(cfs_seek(wfd, 0, CFS_SEEK_SET) != 0) {
|
2016-05-29 22:01:40 +02:00
|
|
|
TEST_FAIL(16);
|
2008-09-18 12:35:30 +02:00
|
|
|
}
|
|
|
|
r = cfs_write(wfd, buf, sizeof(buf));
|
|
|
|
if(r < 0) {
|
2016-05-29 22:01:40 +02:00
|
|
|
TEST_FAIL(17);
|
2008-09-18 12:35:30 +02:00
|
|
|
} else if(r < sizeof(buf)) {
|
2016-05-29 22:01:40 +02:00
|
|
|
TEST_FAIL(18);
|
2008-09-18 12:35:30 +02:00
|
|
|
}
|
2009-02-27 15:28:02 +01:00
|
|
|
if(cfs_seek(rfd, 0, CFS_SEEK_SET) != 0) {
|
2016-05-29 22:01:40 +02:00
|
|
|
TEST_FAIL(19);
|
2008-09-18 12:35:30 +02:00
|
|
|
}
|
|
|
|
|
2011-09-05 21:25:01 +02:00
|
|
|
/* Test 21 and 22: Read the reversed buffer. */
|
2009-02-27 15:28:02 +01:00
|
|
|
cfs_seek(rfd, 0, CFS_SEEK_SET);
|
2008-09-18 12:35:30 +02:00
|
|
|
memset(buf, 0, sizeof(buf));
|
|
|
|
r = cfs_read(rfd, buf, sizeof(buf));
|
|
|
|
if(r < 0) {
|
2016-05-29 22:01:40 +02:00
|
|
|
TEST_FAIL(20);
|
2008-09-18 12:35:30 +02:00
|
|
|
} else if(r < sizeof(buf)) {
|
|
|
|
printf("r = %d\n", r);
|
2016-05-29 22:01:40 +02:00
|
|
|
TEST_FAIL(21);
|
2008-09-18 12:35:30 +02:00
|
|
|
}
|
|
|
|
|
2011-09-05 21:25:01 +02:00
|
|
|
/* Test 23: Verify that the data is correct. */
|
2008-09-18 12:35:30 +02:00
|
|
|
for(r = 0; r < sizeof(buf); r++) {
|
|
|
|
if(buf[r] != sizeof(buf) - r - 1) {
|
2016-05-29 22:01:40 +02:00
|
|
|
TEST_FAIL(22);
|
2008-09-18 12:35:30 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-09-05 21:25:01 +02:00
|
|
|
error = 0;
|
|
|
|
end:
|
2008-09-18 12:35:30 +02:00
|
|
|
cfs_close(wfd);
|
2011-09-05 21:25:01 +02:00
|
|
|
cfs_close(rfd);
|
2016-05-29 22:48:30 +02:00
|
|
|
cfs_remove("T1");
|
2011-09-05 21:25:01 +02:00
|
|
|
return error;
|
|
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
static int
|
|
|
|
coffee_test_append(void)
|
|
|
|
{
|
|
|
|
int error;
|
|
|
|
int afd;
|
|
|
|
unsigned char buf[256], buf2[11];
|
|
|
|
int r, i, j, total_read;
|
|
|
|
#define APPEND_BYTES 1000
|
|
|
|
#define BULK_SIZE 10
|
|
|
|
|
|
|
|
/* Test 1 and 2: Append data to the same file many times. */
|
|
|
|
for(i = 0; i < APPEND_BYTES; i += BULK_SIZE) {
|
2016-05-29 22:09:20 +02:00
|
|
|
afd = cfs_open("T2", CFS_WRITE | CFS_APPEND);
|
2011-09-05 21:25:01 +02:00
|
|
|
if(afd < 0) {
|
2016-01-29 20:56:34 +01:00
|
|
|
TEST_FAIL(1);
|
2011-09-05 21:25:01 +02:00
|
|
|
}
|
|
|
|
for(j = 0; j < BULK_SIZE; j++) {
|
|
|
|
buf[j] = 1 + ((i + j) & 0x7f);
|
|
|
|
}
|
|
|
|
if((r = cfs_write(afd, buf, BULK_SIZE)) != BULK_SIZE) {
|
|
|
|
printf("r=%d\n", r);
|
2016-01-29 20:56:34 +01:00
|
|
|
TEST_FAIL(2);
|
2011-09-05 21:25:01 +02:00
|
|
|
}
|
|
|
|
cfs_close(afd);
|
|
|
|
}
|
|
|
|
|
2016-01-29 20:56:34 +01:00
|
|
|
/* Test 3-6: Read back the data written previously and verify that it
|
2011-09-05 21:25:01 +02:00
|
|
|
is correct. */
|
2016-05-29 22:09:20 +02:00
|
|
|
afd = cfs_open("T2", CFS_READ);
|
2011-09-05 21:25:01 +02:00
|
|
|
if(afd < 0) {
|
2016-01-29 20:56:34 +01:00
|
|
|
TEST_FAIL(3);
|
2011-09-05 21:25:01 +02:00
|
|
|
}
|
|
|
|
total_read = 0;
|
|
|
|
while((r = cfs_read(afd, buf2, sizeof(buf2))) > 0) {
|
|
|
|
for(j = 0; j < r; j++) {
|
|
|
|
if(buf2[j] != 1 + ((total_read + j) & 0x7f)) {
|
2016-01-29 20:56:34 +01:00
|
|
|
TEST_FAIL(4);
|
2011-09-05 21:25:01 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
total_read += r;
|
|
|
|
}
|
|
|
|
if(r < 0) {
|
2016-01-29 20:56:34 +01:00
|
|
|
TEST_FAIL(5);
|
2011-09-05 21:25:01 +02:00
|
|
|
}
|
|
|
|
if(total_read != APPEND_BYTES) {
|
2016-01-29 20:56:34 +01:00
|
|
|
TEST_FAIL(6);
|
2011-09-05 21:25:01 +02:00
|
|
|
}
|
|
|
|
cfs_close(afd);
|
|
|
|
|
|
|
|
error = 0;
|
|
|
|
end:
|
|
|
|
cfs_close(afd);
|
2016-05-29 22:48:30 +02:00
|
|
|
cfs_remove("T2");
|
2011-09-05 21:25:01 +02:00
|
|
|
return error;
|
|
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
static int
|
|
|
|
coffee_test_modify(void)
|
|
|
|
{
|
|
|
|
int error;
|
|
|
|
int wfd;
|
|
|
|
unsigned char buf[256];
|
|
|
|
int r, i;
|
|
|
|
unsigned offset;
|
|
|
|
|
|
|
|
wfd = -1;
|
|
|
|
|
|
|
|
if(cfs_coffee_reserve("T3", FILE_SIZE) < 0) {
|
2016-01-29 20:56:34 +01:00
|
|
|
TEST_FAIL(1);
|
2011-09-05 21:25:01 +02:00
|
|
|
}
|
2008-09-18 12:35:30 +02:00
|
|
|
|
2011-09-05 21:25:01 +02:00
|
|
|
if(cfs_coffee_configure_log("T3", FILE_SIZE / 2, 11) < 0) {
|
2016-01-29 20:56:34 +01:00
|
|
|
TEST_FAIL(2);
|
2009-02-17 16:08:01 +01:00
|
|
|
}
|
|
|
|
|
2008-09-18 12:35:30 +02:00
|
|
|
/* Test 16: Test multiple writes at random offset. */
|
|
|
|
for(r = 0; r < 100; r++) {
|
2016-05-29 22:09:20 +02:00
|
|
|
wfd = cfs_open("T3", CFS_WRITE | CFS_READ);
|
2008-09-18 12:35:30 +02:00
|
|
|
if(wfd < 0) {
|
2016-01-29 20:56:34 +01:00
|
|
|
TEST_FAIL(3);
|
2008-09-18 12:35:30 +02:00
|
|
|
}
|
|
|
|
|
2009-02-17 16:08:01 +01:00
|
|
|
offset = random_rand() % FILE_SIZE;
|
2008-09-18 12:35:30 +02:00
|
|
|
|
2016-05-29 22:23:15 +02:00
|
|
|
for(i = 0; i < sizeof(buf); i++) {
|
|
|
|
buf[i] = i;
|
2008-09-18 12:35:30 +02:00
|
|
|
}
|
|
|
|
|
2009-02-27 15:28:02 +01:00
|
|
|
if(cfs_seek(wfd, offset, CFS_SEEK_SET) != offset) {
|
2016-01-29 20:56:34 +01:00
|
|
|
TEST_FAIL(4);
|
2008-09-18 12:35:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if(cfs_write(wfd, buf, sizeof(buf)) != sizeof(buf)) {
|
2016-01-29 20:56:34 +01:00
|
|
|
TEST_FAIL(5);
|
2008-09-18 12:35:30 +02:00
|
|
|
}
|
|
|
|
|
2009-02-27 15:28:02 +01:00
|
|
|
if(cfs_seek(wfd, offset, CFS_SEEK_SET) != offset) {
|
2016-01-29 20:56:34 +01:00
|
|
|
TEST_FAIL(6);
|
2008-09-18 12:35:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
memset(buf, 0, sizeof(buf));
|
|
|
|
if(cfs_read(wfd, buf, sizeof(buf)) != sizeof(buf)) {
|
2016-01-29 20:56:34 +01:00
|
|
|
TEST_FAIL(7);
|
2008-09-18 12:35:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
for(i = 0; i < sizeof(buf); i++) {
|
|
|
|
if(buf[i] != i) {
|
|
|
|
printf("buf[%d] != %d\n", i, buf[i]);
|
2016-01-29 20:56:34 +01:00
|
|
|
TEST_FAIL(8);
|
2008-09-18 12:35:30 +02:00
|
|
|
}
|
|
|
|
}
|
2016-05-29 22:23:15 +02:00
|
|
|
|
|
|
|
cfs_close(wfd);
|
2008-09-18 12:35:30 +02:00
|
|
|
}
|
|
|
|
|
2011-09-05 21:25:01 +02:00
|
|
|
error = 0;
|
|
|
|
end:
|
|
|
|
cfs_close(wfd);
|
2016-05-29 22:48:30 +02:00
|
|
|
cfs_remove("T3");
|
2011-09-05 21:25:01 +02:00
|
|
|
return error;
|
|
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
static int
|
|
|
|
coffee_test_gc(void)
|
|
|
|
{
|
|
|
|
int i;
|
2008-11-13 15:46:50 +01:00
|
|
|
|
2011-09-05 21:25:01 +02:00
|
|
|
for (i = 0; i < 100; i++) {
|
|
|
|
if (i & 1) {
|
2016-05-29 22:48:30 +02:00
|
|
|
if(cfs_coffee_reserve("beta", random_rand() & 0xffff) < 0) {
|
2011-09-05 21:25:01 +02:00
|
|
|
return i;
|
2008-11-13 15:46:50 +01:00
|
|
|
}
|
2016-05-29 22:48:30 +02:00
|
|
|
cfs_remove("alpha");
|
2011-09-05 21:25:01 +02:00
|
|
|
} else {
|
2016-05-29 22:48:30 +02:00
|
|
|
if(cfs_coffee_reserve("alpha", 93171) < 0) {
|
2011-09-05 21:25:01 +02:00
|
|
|
return i;
|
|
|
|
}
|
2016-05-29 22:48:30 +02:00
|
|
|
cfs_remove("beta");
|
2008-11-13 15:46:50 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-09-05 21:25:01 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
static void
|
|
|
|
print_result(const char *test_name, int result)
|
|
|
|
{
|
|
|
|
printf("%s: ", test_name);
|
|
|
|
if(result == 0) {
|
|
|
|
printf("OK\n");
|
|
|
|
} else {
|
|
|
|
printf("ERROR (test %d)\n", result);
|
|
|
|
}
|
2008-09-18 12:35:30 +02:00
|
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
PROCESS_THREAD(testcoffee_process, ev, data)
|
|
|
|
{
|
2009-04-03 13:12:17 +02:00
|
|
|
int start;
|
2011-09-05 21:25:01 +02:00
|
|
|
int result;
|
2009-04-03 13:12:17 +02:00
|
|
|
|
2008-09-18 12:35:30 +02:00
|
|
|
PROCESS_BEGIN();
|
|
|
|
|
2009-04-03 13:12:17 +02:00
|
|
|
start = clock_seconds();
|
2011-09-05 21:25:01 +02:00
|
|
|
|
|
|
|
printf("Coffee test started\n");
|
|
|
|
|
|
|
|
result = cfs_coffee_format();
|
|
|
|
print_result("Formatting", result);
|
|
|
|
|
|
|
|
result = coffee_test_basic();
|
|
|
|
print_result("Basic operations", result);
|
|
|
|
|
|
|
|
result = coffee_test_append();
|
|
|
|
print_result("File append", result);
|
|
|
|
|
|
|
|
result = coffee_test_modify();
|
|
|
|
print_result("File modification", result);
|
|
|
|
|
|
|
|
result = coffee_test_gc();
|
|
|
|
print_result("Garbage collection", result);
|
|
|
|
|
2016-01-29 20:56:34 +01:00
|
|
|
printf("Coffee test finished. Duration: %d seconds\n",
|
2011-09-05 21:25:01 +02:00
|
|
|
(int)(clock_seconds() - start));
|
2008-09-18 12:35:30 +02:00
|
|
|
|
|
|
|
PROCESS_END();
|
|
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|