Moved tests + Added more tests + Added memory testing to actions
Run tests / Run tests (push) Failing after 6s
Run tests / Run tests (push) Failing after 6s
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
#define EV_LOG_IMPLEMENTATION
|
||||
#include "ev_log.h"
|
||||
|
||||
|
||||
int main()
|
||||
{
|
||||
ev_log_trace("Trace Log");
|
||||
return 0;
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
tests = [
|
||||
'basic_log',
|
||||
]
|
||||
|
||||
foreach t : tests
|
||||
exec = executable(t, t+'.c', dependencies: [log_dep], c_args: evh_c_args)
|
||||
test(t, exec, suite: 'log')
|
||||
endforeach
|
||||
Reference in New Issue
Block a user