// S : tags fork min c $TAGS // S : expect --result valid // S : cc -o test.bc $CC_OPT $file // S : verify $V_OPT test.bc #include #include #include int main() { assert( getppid() == 0 ); pid_t parent = getpid(); pid_t pid = fork(); if ( pid == 0 ) assert( getppid() == parent ); }