31 lines
606 B
C
31 lines
606 B
C
// Kyler Olsen
|
|
// YREA SLS
|
|
// Extra Tests
|
|
// November 2025
|
|
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <stdint.h>
|
|
|
|
#include "sls/string.h"
|
|
#include "sls/lexer.h"
|
|
#include "sls/errors.h"
|
|
#include "tests/tests.h"
|
|
|
|
static const size_t NUM_EXTRA_TESTS = 0;
|
|
|
|
// Run all extra tests
|
|
TestsReport run_extra_tests()
|
|
{
|
|
TestsReport report = {
|
|
.section = SLS_STR("extra_tests"),
|
|
.count = NUM_EXTRA_TESTS,
|
|
.tests = malloc(sizeof(TestResult) * NUM_EXTRA_TESTS)};
|
|
|
|
size_t i = 0;
|
|
(void)i;
|
|
// report.tests[i++] = test_malloc_and_copy();
|
|
return report;
|
|
}
|