Compare commits
2 Commits
2d77c7436a
...
a63eb385b4
| Author | SHA1 | Date | |
|---|---|---|---|
| a63eb385b4 | |||
| 34dff6aaf9 |
@ -67,8 +67,8 @@ steps:
|
|||||||
- name: Generate memory report
|
- name: Generate memory report
|
||||||
image: registry.riba-interactive.de/reportly:latest
|
image: registry.riba-interactive.de/reportly:latest
|
||||||
settings:
|
settings:
|
||||||
input_path: cmake-build-ci/Testing
|
input_path: cmake-build-ci
|
||||||
report_output: reports/memory_report.md
|
output_path: .reports
|
||||||
debug: true
|
debug: true
|
||||||
|
|
||||||
- name: Report test and coverage
|
- name: Report test and coverage
|
||||||
|
|||||||
@ -112,11 +112,7 @@ spec("hashtable") {
|
|||||||
value *value = value_new(1337);
|
value *value = value_new(1337);
|
||||||
check(value_hashtable_insert(hashtable, key, value) == 0);
|
check(value_hashtable_insert(hashtable, key, value) == 0);
|
||||||
check(value != NULL, "value should not be NULL");
|
check(value != NULL, "value should not be NULL");
|
||||||
//value_destroy(&value);
|
value_destroy(&value);
|
||||||
free(value);
|
|
||||||
free(value);
|
|
||||||
value_new(1234);
|
|
||||||
free(NULL);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
it("should return 0 with NULL as this param") {
|
it("should return 0 with NULL as this param") {
|
||||||
|
|||||||
@ -135,7 +135,7 @@ spec("list") {
|
|||||||
it("should return 0 with NULL as this param") {
|
it("should return 0 with NULL as this param") {
|
||||||
value *value = value_new(1);
|
value *value = value_new(1);
|
||||||
check(value_list_unshift(NULL, value) == 0, "return should not be 0");
|
check(value_list_unshift(NULL, value) == 0, "return should not be 0");
|
||||||
//value_destroy(&value);
|
value_destroy(&value);
|
||||||
}
|
}
|
||||||
|
|
||||||
it("should return 0 with NULL as valueElement param") {
|
it("should return 0 with NULL as valueElement param") {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user