mirror of
https://github.com/RGBCube/serenity
synced 2025-05-24 05:05:07 +00:00

If the exec promises fail to apply, then the normal promises should not apply either. Add a test for this fixed functionality.
25 lines
477 B
C++
25 lines
477 B
C++
#include <stdio.h>
|
|
#include <unistd.h>
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
int res = pledge("stdio unix rpath", "stdio");
|
|
if (res < 0) {
|
|
perror("pledge");
|
|
return 1;
|
|
}
|
|
|
|
res = pledge("stdio unix", "stdio unix");
|
|
if (res >= 0) {
|
|
fprintf(stderr, "second pledge should have failed\n");
|
|
return 1;
|
|
}
|
|
|
|
res = pledge("stdio rpath", "stdio");
|
|
if (res < 0) {
|
|
perror("pledge");
|
|
return 1;
|
|
}
|
|
|
|
return 0;
|
|
}
|