bzr branch
http://gegoxaren.bato24.eu/bzr/simpletypesystem/trunk
|
34
by Gustav Hartvigsson
* Finnished test suite |
1 |
#include <stdlib.h> |
2 |
#include <stdio.h> |
|
3 |
#include <malloc.h> |
|
4 |
#include <string.h> |
|
5 |
#include <stdint.h> |
|
6 |
||
7 |
#include "test_macros.h" |
|
8 |
#include "refcount.h" |
|
|
39
by Gustav Hartvigsson
* Added "check" target for testing. |
9 |
#include "to_string.h" |
10 |
#include "error.h" |
|
|
47
by Gustav Hartvigsson
* Added a few skeletal functions to Callback.h |
11 |
#include "dynamic_array.h" |
|
109.1.1
by Gustav Hartvigsson
* SMap seems to be broken... Or could it be SObject's Callback stuff? Or SLinkedList? |
12 |
#include "callback.h" |
|
109.1.5
by Gustav Hartvigsson
* Getting closer to fixing the callbacks... |
13 |
#include "linked_list.h" |
14 |
#include "thread.h" |
|
|
109.1.7
by Gustav Hartvigsson
* Fixed SMap, for the time being... |
15 |
#include "map.h" |
|
43
by Gustav Hartvigsson
* Code cleanup |
16 |
|
|
34
by Gustav Hartvigsson
* Finnished test suite |
17 |
int main (int argc, char ** argv, char ** argp) { |
|
109.1.1
by Gustav Hartvigsson
* SMap seems to be broken... Or could it be SObject's Callback stuff? Or SLinkedList? |
18 |
setup_suite ("SSTS"); |
|
109.1.5
by Gustav Hartvigsson
* Getting closer to fixing the callbacks... |
19 |
|
|
39
by Gustav Hartvigsson
* Added "check" target for testing. |
20 |
test_unit (test_refcount, "Refcount"); |
21 |
test_unit (test_to_string, "To String"); |
|
22 |
test_unit (test_error, "Error"); |
|
|
47
by Gustav Hartvigsson
* Added a few skeletal functions to Callback.h |
23 |
test_unit (test_dynamic_array, "Dynamic Array"); |
|
109.1.5
by Gustav Hartvigsson
* Getting closer to fixing the callbacks... |
24 |
test_unit (test_linked_list, "Linked List"); |
|
109.1.7
by Gustav Hartvigsson
* Fixed SMap, for the time being... |
25 |
test_unit (test_map, "Map"); |
|
109.1.8
by Gustav Hartvigsson
* Fixed SMap so the callbacks will work... What a single line of code can do.. |
26 |
test_unit (test_callback, "Callback"); |
|
109.1.5
by Gustav Hartvigsson
* Getting closer to fixing the callbacks... |
27 |
//test_unit (test_thread, "Threading"); |
|
109.1.1
by Gustav Hartvigsson
* SMap seems to be broken... Or could it be SObject's Callback stuff? Or SLinkedList? |
28 |
|
29 |
end_suite (); |
|
|
34
by Gustav Hartvigsson
* Finnished test suite |
30 |
}
|