-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathrun_test.c
60 lines (46 loc) · 1.87 KB
/
run_test.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/* Copyright 2009, 20 Brendan Tauras */
/* run_test.cpp is part of FlashSim. */
/* FlashSim is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* any later version. */
/* FlashSim is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details. */
/* You should have received a copy of the GNU General Public License
* along with FlashSim. If not, see <http://www.gnu.org/licenses/>. */
/****************************************************************************/
/* Basic test driver
* Brendan Tauras 2009-11-02
*
* driver to create and run a very basic test of writes then reads */
#include "ssd.h"
#include <stdio.h>
#define SIZE 1
int main()
{
int i;
load_config();
print_config(NULL);
printf("size=%d, %d\n", RAM_SSD_SIZE, RAM_SSD_REAL_SIZE);
printf("Press ENTER to continue... RAM_SSD_REAL_SIZE=%d MB, %d secs, %d MB, %d secs",
RAM_SSD_REAL_SIZE/2/1024, RAM_SSD_REAL_SIZE,
RAM_SSD_SIZE/2/1024, RAM_SSD_SIZE);
getchar();
printf("\n");
Ssd *ssd = ssd_sim_new(SSD_SIZE);
int64 result;
for (i = 0; i < SIZE; i++) {
/* event_arrive(event_type, logical_address, size, start_time) */
result = ssd_event_arrive(ssd, SSD_WRITE, i, 1, (int64) 1);
result = ssd_event_arrive(ssd, SSD_WRITE, i+10, 1, (int64) 1);
}
for (i = 0; i < SIZE; i++) {
/* event_arrive(event_type, logical_address, size, start_time) */
result = ssd_event_arrive(ssd, SSD_READ, 1, 1, (int64) 1);
result = ssd_event_arrive(ssd, SSD_READ, i, 1, (int64) 1);
}
ssd_sim_free(ssd);
return 0;
}