19 lines
524 B
C
19 lines
524 B
C
/*
|
|
* Copyright (C) Tristan Franssen, <tristanfranssen@strawhats.nl>.
|
|
*
|
|
* This software is licensed under the Apache License, Version 2.0 (the "License");
|
|
* You may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License in the file LICENSE or at
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*/
|
|
#include "tools/tool.h"
|
|
#include "unit/unit.h"
|
|
|
|
int main(void) {
|
|
if (cosms_core_tool_generate_test_data() != 0) {
|
|
return -1;
|
|
}
|
|
|
|
COSMS_CORE_TEST_RUN()
|
|
return 0;
|
|
}
|