project_files/hwc/rtl/tests/check_check.c
author nemo
Tue, 17 Apr 2018 15:21:52 -0400
changeset 13334 e8801220c13f
parent 10015 4feced261c68
permissions -rw-r--r--
minor simplification of conditions for not spawning a visual gear - also allows lua to spawn clouds critically or non-critically. We probably shouldn't even exempt clouds from this, and just spawn them once synced, but, eh, probably isn't a significant hit since sheepluva made the motion more efficient.

#include <check.h>
#include <stdlib.h>
#include "check_check.h"

int main(void)
{
    int number_failed;

    Suite *s1 = system_suite();
    Suite *s2 = misc_suite();
    Suite *s3 = sysutils_suite();
    Suite *s4 = fileio_suite();

    SRunner *sr = srunner_create(s1);
    srunner_add_suite(sr, s2);
    srunner_add_suite(sr, s3);
    srunner_add_suite(sr, s4);

    srunner_run_all(sr, CK_NORMAL);
    number_failed = srunner_ntests_failed(sr);
    srunner_free(sr);
    return (number_failed == 0) ? EXIT_SUCCESS : EXIT_FAILURE;
}