Basic testing infrastructure

This commit is contained in:
2024-04-09 23:00:08 +02:00
parent 4ad19ff450
commit 39f0a0bc0d
45 changed files with 529 additions and 114 deletions

View File

@@ -7,6 +7,7 @@
#include <string.h>
#include <sys/stat.h>
#include <unistd.h>
#include <sys/wait.h>
void ls() {
DIR *rfd = opendir("/");
@@ -44,6 +45,7 @@ int main() {
print_tasks();
} else {
execve(line, 0, 0);
sleep(10000);
}
}
}