1 2 3 4 5 6 7 8 9 10 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"); }