aboutsummaryrefslogtreecommitdiffstats
path: root/test.c
diff options
context:
space:
mode:
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");
+}