Vulkan spec
This commit is contained in:
@@ -0,0 +1,100 @@
|
||||
/*
|
||||
* Copyright (c), Recep Aslantas.
|
||||
*
|
||||
* MIT License (MIT), http://opensource.org/licenses/MIT
|
||||
* Full license can be found in the LICENSE file
|
||||
*/
|
||||
|
||||
#include "include/common.h"
|
||||
#include "tests.h"
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <time.h>
|
||||
#include <string.h>
|
||||
|
||||
int
|
||||
main(int argc, const char * argv[]) {
|
||||
test_entry_t *entry;
|
||||
test_status_t st;
|
||||
int32_t i, count, passed, failed, maxlen;
|
||||
double start, end, elapsed, total;
|
||||
(void)argc;
|
||||
(void)argv;
|
||||
|
||||
passed = failed = maxlen = 0;
|
||||
total = 0.0;
|
||||
count = sizeof(tests) / sizeof(tests[0]);
|
||||
|
||||
fprintf(stderr, CYAN "\nWelcome to cglm tests ( " RESET);
|
||||
glm_arch_print(stderr);
|
||||
fprintf(stderr, CYAN " )\n\n" RESET);
|
||||
|
||||
srand((unsigned int)time(NULL));
|
||||
|
||||
for (i = 0; i < count; i++) {
|
||||
int32_t len;
|
||||
|
||||
entry = tests + i;
|
||||
len = (int32_t)strlen(entry->name);
|
||||
|
||||
maxlen = GLM_MAX(maxlen, len);
|
||||
}
|
||||
|
||||
maxlen += 5;
|
||||
|
||||
fprintf(stderr,
|
||||
BOLDWHITE " %-*s %-*s\n",
|
||||
maxlen, "Test Name", maxlen, "Elapsed Time");
|
||||
|
||||
for (i = 0; i < count; i++) {
|
||||
entry = tests + i;
|
||||
start = clock();
|
||||
st = entry->entry();
|
||||
end = clock();
|
||||
elapsed = (end - start) / CLOCKS_PER_SEC;
|
||||
total += elapsed;
|
||||
|
||||
if (!st.status) {
|
||||
fprintf(stderr,
|
||||
BOLDRED " " FAIL_TEXT BOLDWHITE " %s " RESET, entry->name);
|
||||
if (st.msg) {
|
||||
fprintf(stderr,
|
||||
YELLOW "- %s" RESET,
|
||||
st.msg);
|
||||
}
|
||||
|
||||
fprintf(stderr, "\n");
|
||||
|
||||
failed++;
|
||||
} else {
|
||||
fprintf(stderr, GREEN " " OK_TEXT RESET " %-*s ", maxlen, entry->name);
|
||||
|
||||
if (elapsed > 0.01)
|
||||
fprintf(stderr, YELLOW "%.2fs", elapsed);
|
||||
else
|
||||
fprintf(stderr, "0");
|
||||
|
||||
fprintf(stderr, "\n" RESET);
|
||||
passed++;
|
||||
}
|
||||
}
|
||||
|
||||
if (failed == 0) {
|
||||
fprintf(stderr,
|
||||
BOLDGREEN "\n All tests passed " FINAL_TEXT "\n" RESET);
|
||||
}
|
||||
|
||||
fprintf(stderr,
|
||||
CYAN "\ncglm test results (%0.2fs):\n" RESET
|
||||
"--------------------------\n"
|
||||
|
||||
MAGENTA "%d" RESET " tests ran, "
|
||||
GREEN "%d" RESET " passed, "
|
||||
RED "%d" RESET " failed\n\n" RESET,
|
||||
total,
|
||||
count,
|
||||
passed,
|
||||
failed);
|
||||
|
||||
return failed;
|
||||
}
|
||||
Reference in New Issue
Block a user