mirror of
https://github.com/Ed94/metadesk.git
synced 2026-07-31 20:00:07 +00:00
omitting tests offloaded to metadesk_libgen
This commit is contained in:
@@ -1,49 +0,0 @@
|
||||
// This is tests both the segregated and single-header libraris
|
||||
|
||||
#if TEST_SINGLEHEADER
|
||||
#define MD_IMPLEMENTATION
|
||||
#include "metadesk_singleheader.h"
|
||||
#else
|
||||
#include "metadesk_deps.c"
|
||||
#include "metadesk.c"
|
||||
#endif
|
||||
|
||||
// This program expects to be run from the build directory (where it would be after being built)
|
||||
#define path_root
|
||||
#define path_examples path_root "examples/"
|
||||
#define path_intro path_examples "intro/"
|
||||
#define path_hello_world_mdesk path_intro "hello_world.mdesk"
|
||||
|
||||
#define lit md_str8_lit
|
||||
|
||||
int main()
|
||||
{
|
||||
MD_Context ctx = {0};
|
||||
ctx.os_ctx.enable_large_pages = true;
|
||||
md_init(& ctx);
|
||||
|
||||
printf("metadesk: got past init!\n");
|
||||
|
||||
MD_Arena* arena = md_arena_alloc();
|
||||
MD_String8 hello_world_mdesk = md_os_data_from_file_path(arena, lit(path_hello_world_mdesk));
|
||||
|
||||
MD_TokenizeResult lexed = md_tokenize_from_text (arena, hello_world_mdesk);
|
||||
MD_ParseResult parsed = md_parse_from_text_tokens(arena, lit(path_hello_world_mdesk), hello_world_mdesk, lexed.tokens);
|
||||
|
||||
#define md_str8_list_iter(list, elem) list.first; elem; elem = elem->next
|
||||
MD_String8List debug_list = md_debug_string_list_from_tree(arena, parsed.root);
|
||||
|
||||
printf("Parsed listing:\n");
|
||||
for (MD_String8Node* elem = md_str8_list_iter(debug_list, elem))
|
||||
{
|
||||
MD_String8 entry = elem->string;
|
||||
if (md_str8_find_needle(entry, 0, lit("\n"), 0) < entry.size) {
|
||||
printf("%*s", (int)entry.size, entry.str);
|
||||
}
|
||||
else {
|
||||
printf("%*s\n", (int)entry.size, entry.str);
|
||||
}
|
||||
}
|
||||
|
||||
md_deinit(& ctx);
|
||||
}
|
||||
@@ -1,47 +0,0 @@
|
||||
// This is test strictly for the granular (non-generated) version of the library to make sure it operates correctly
|
||||
|
||||
// #define MD_LINKED_LIST_PURE_MACRO 1
|
||||
// #define MD_DONT_MAP_ANREA_TO_ALLOCATOR_IMPL 1
|
||||
#include "metadesk.c"
|
||||
|
||||
// This program expects to be run from the build directory (where it would be after being built)
|
||||
#define path_examples "../examples"
|
||||
#define path_intro path_examples "/intro"
|
||||
#define path_hello_world_mdesk path_intro "/hello_world.mdesk"
|
||||
|
||||
#define text str8_lit
|
||||
|
||||
int main()
|
||||
{
|
||||
Context ctx = {0};
|
||||
ctx.os_ctx.enable_large_pages = true;
|
||||
init(& ctx);
|
||||
|
||||
printf("metadesk: got past init!\n");
|
||||
|
||||
Arena* arena = arena_alloc();
|
||||
String8 hello_world_mdesk = os_data_from_file_path(arena, text(path_hello_world_mdesk));
|
||||
|
||||
TokenizeResult lexed = tokenize_from_text (arena, hello_world_mdesk);
|
||||
ParseResult parsed = parse_from_text_tokens(arena, text(path_hello_world_mdesk), hello_world_mdesk, lexed.tokens);
|
||||
|
||||
#define str8_list_iter(list, elem) list.first; elem; elem = elem->next
|
||||
String8List debug_list = debug_string_list_from_tree(arena, parsed.root);
|
||||
|
||||
printf("Parsed listing:\n");
|
||||
for (String8Node* elem = str8_list_iter(debug_list, elem))
|
||||
{
|
||||
String8 entry = elem->string;
|
||||
if (str8_find_needle(entry, 0, str8_lit("\n"), 0) < entry.size) {
|
||||
printf("%*s", (int)entry.size, entry.str);
|
||||
}
|
||||
else {
|
||||
printf("%*s\n", (int)entry.size, entry.str);
|
||||
}
|
||||
}
|
||||
|
||||
SSIZE what = 54;
|
||||
String8 test = str8_from(arena, what);
|
||||
|
||||
deinit(& ctx);
|
||||
}
|
||||
@@ -1,22 +0,0 @@
|
||||
#include "md.h"
|
||||
#include "md.c"
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
static MD_Arena *arena = 0;
|
||||
|
||||
int main(void)
|
||||
{
|
||||
arena = MD_ArenaAlloc();
|
||||
|
||||
printf("%d\n", MD_CPP_VERSION);
|
||||
|
||||
#if MD_CPP_VERSION != 0 && MD_CPP_VERSION != 98 // anything C++11 and up
|
||||
MD_String8 foo = "foo"_md;
|
||||
MD_String8 bar = "bar"_md;
|
||||
MD_String8 str = MD_S8Fmt(arena, "%S%S", foo, bar);
|
||||
printf("%.*s", MD_S8VArg(str));
|
||||
#endif
|
||||
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user