Remove obsolete C test files and Makefiles

This commit is contained in:
Pavel Punegov
2017-10-24 14:05:13 +03:00
committed by Pavel Punegov
parent 9400ee6a8e
commit 0b7ad6e205
5 changed files with 0 additions and 143 deletions
@@ -1,16 +0,0 @@
#include <stdio.h>
extern void *resolve_symbol(const char*);
int
run_test() {
int (*check_type)() = resolve_symbol("kfun:check_type()");
int (*check_not_type)() = resolve_symbol("kfun:check_not_type()");
int (*check_interface)() = resolve_symbol("kfun:check_interface()");
if (!check_type()) return 1;
if (!check_not_type()) return 1;
if (!check_interface()) return 1;
return 0;
}