Closed slavi closed 15 years ago
It turns out the grader is working exactly as expected. The way we prevent forks works like this: the call to fork() fails (instead of returning the child's pid, it returns that it failed). So what Tony is seeing is correct - his program is not forking and he's getting WAs/TLEs.
This source gets WA, while it should reports sth else (e.g. that we don't allow forks):
Similarly, this source gets TL:
While, again, it should be killed because of the fork-s..