aboutsummaryrefslogtreecommitdiff
path: root/test.c
diff options
context:
space:
mode:
authorTeddy <ted.sybil@gmail.com>2014-04-05 14:50:57 +0800
committerTeddy <ted.sybil@gmail.com>2014-04-05 14:50:57 +0800
commitbbb371767a3391c0b1c2222b9a9c87b4dbd36ef1 (patch)
tree9937c63c1b148736970f7392b460735c4e0b401e /test.c
parent28989b9fcb9970000cf1c5cc7e44b7c5d573e33b (diff)
move obsolete file
Diffstat (limited to 'test.c')
-rw-r--r--test.c92
1 files changed, 0 insertions, 92 deletions
diff --git a/test.c b/test.c
deleted file mode 100644
index dc564d9..0000000
--- a/test.c
+++ /dev/null
@@ -1,92 +0,0 @@
-#include <stdlib.h>
-#include <stdio.h>
-#include "semantics.h"
-#define PV(str) \
- do \
- { \
- if (cscope_push_var(scope, newvar(str))) \
- fprintf(stderr, "Successfully pushed var: %s\n", str); \
- else \
- fprintf(stderr, "Naming conflicts deteced: %s\n", str); \
- } while(0)
-
-#define PT(str) \
- do \
- { \
- if (cscope_push_type(scope, newtype(str))) \
- fprintf(stderr, "Successfully pushed type: %s\n", str); \
- else \
- fprintf(stderr, "Naming conflicts deteced: %s\n", str); \
- } while(0)
-
-CVar_t newvar(const char *name) {
- return cvar_create(name, NULL);
-}
-
-CType_t newtype(const char *name) {
- return ctype_create(name, 0);
-}
-
-void manual() {
- CScope_t scope = cscope_create();
- PV("a");
- PV("b");
- PV("asdf");
- PV("fdsa");
- PV("hello");
- cscope_debug_print(scope);
- cscope_enter(scope);
- PV("a");
- PV("hello");
- PT("CType");
- cscope_debug_print(scope);
- cscope_enter(scope);
- PV("a");
- PV("yay");
- PV("world");
- PT("CType");
- PV("a");
- cscope_debug_print(scope);
- cscope_exit(scope);
- cscope_debug_print(scope);
- cscope_exit(scope);
- cscope_debug_print(scope);
-}
-
-char *str_gen(int len) {
- int i;
- char *str = malloc(len);
- for (i = 0; i < len; i++)
- str[i] = rand() % 2 + 'a';
- return str;
-}
-
-void autoforce() {
- static const int max_lvl = 100,
- max_push = 10;
- int i, j;
- CScope_t scope = cscope_create();
- for (i = 0; i < max_lvl; i++)
- {
- cscope_enter(scope);
- int push = rand() % max_push;
- for (j = 0; j < push; j++)
- {
- int len = rand() % 3 + 1;
- int opt = rand() & 1;
- if (opt) PV(str_gen(len));
- else PT(str_gen(len));
- }
- }
- for (i = 0; i < max_lvl; i++)
- {
- cscope_debug_print(scope);
- cscope_exit(scope);
- }
-}
-
-int main() {
-/* manual(); */
- autoforce();
- return 0;
-}