aboutsummaryrefslogtreecommitdiffstats
path: root/test.c
diff options
context:
space:
mode:
authorOmar Rizwan <omar@omar.website>2020-12-19 15:22:44 -0800
committerOmar Rizwan <omar@omar.website>2020-12-19 15:22:44 -0800
commite1e47173b6d432aa6b1a0378fc017291243a74ad (patch)
tree386f8eb574c97912ba536c85ab1f57646a3acb94 /test.c
parentbb0376c407f0745e5bfc5c4d88fd5bc0a40a7d33 (diff)
make test.c. clean up utf8/string stuff a bit, start write patching
Diffstat (limited to 'test.c')
-rwxr-xr-xtest.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/test.c b/test.c
new file mode 100755
index 0000000..29de739
--- /dev/null
+++ b/test.c
@@ -0,0 +1,11 @@
+//usr/bin/env cc -o test "$0" && ./test; exit
+#include <stdio.h>
+#include <stdlib.h>
+#include <assert.h>
+
+// integration tests
+int main() {
+ assert(system("echo about:blank > fs/mnt/tabs/create") == 0);
+
+ assert(1); printf("Done!\n");
+}