Compare commits

..

No commits in common. "a63eb385b4fd5be3caa370c877dcf00e0514beab" and "2d77c7436a832e7be0590ade8c7ba74edc2b09eb" have entirely different histories.

3 changed files with 8 additions and 4 deletions

View File

@ -67,8 +67,8 @@ steps:
- name: Generate memory report
image: registry.riba-interactive.de/reportly:latest
settings:
input_path: cmake-build-ci
output_path: .reports
input_path: cmake-build-ci/Testing
report_output: reports/memory_report.md
debug: true
- name: Report test and coverage

View File

@ -112,7 +112,11 @@ spec("hashtable") {
value *value = value_new(1337);
check(value_hashtable_insert(hashtable, key, value) == 0);
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") {

View File

@ -135,7 +135,7 @@ spec("list") {
it("should return 0 with NULL as this param") {
value *value = value_new(1);
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") {