grsecurity test: add note explaining what the tcc -run test accomplishes

+2
+2
nixos/tests/grsecurity.nix
··· 32 $machine->succeed("${pkgs.paxtest}/lib/paxtest/mprotstack") =~ /Killed/ or die; 33 }; 34 35 subtest "tcc", sub { 36 $machine->execute("echo -e '#include <stdio.h>\nint main(void) { puts(\"hello\"); return 0; }' >main.c"); 37 $machine->succeed("${pkgs.tinycc.bin}/bin/tcc -run main.c");
··· 32 $machine->succeed("${pkgs.paxtest}/lib/paxtest/mprotstack") =~ /Killed/ or die; 33 }; 34 35 + # tcc -run executes run-time generated code and so allows us to test whether 36 + # paxmark actually works (otherwise, the process should be terminated) 37 subtest "tcc", sub { 38 $machine->execute("echo -e '#include <stdio.h>\nint main(void) { puts(\"hello\"); return 0; }' >main.c"); 39 $machine->succeed("${pkgs.tinycc.bin}/bin/tcc -run main.c");