diff options
Diffstat (limited to 'test/tape-test.c')
-rw-r--r-- | test/tape-test.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/test/tape-test.c b/test/tape-test.c index f1cca25..fc1b2e5 100644 --- a/test/tape-test.c +++ b/test/tape-test.c @@ -6,5 +6,10 @@ extern int main(int argc, char* argv[]) { printf("usage: %s source-file file-with-commands-replaced-with-a's\n", argv[0]); return 1; } - return bvr_compose_page(argv[1], 0, argv[2]); + // bvr_var_set("abc", "1234"); + // bvr_var_set("ab", "123"); + // printf("%s\n", bvr_var_get("abc")); + // printf("%s\n", bvr_var_get("ab")); + bvr_compose_page(argv[1], 0, argv[2]); + return 1; } |