Rename test to textwrite

This commit is contained in:
Frans Kaashoek 2022-08-23 11:21:26 -04:00
parent 858fc68bdf
commit 948cfbdb1f

View file

@ -2510,7 +2510,7 @@ stacktest(char *s)
// check that writes to text segment fault // check that writes to text segment fault
void void
texttest(char *s) textwrite(char *s)
{ {
int pid; int pid;
int xstatus; int xstatus;
@ -2977,6 +2977,7 @@ main(int argc, char *argv[])
{bigargtest, "bigargtest"}, {bigargtest, "bigargtest"},
{argptest, "argptest"}, {argptest, "argptest"},
{stacktest, "stacktest"}, {stacktest, "stacktest"},
{textwrite, "textwrite"},
{pgbug, "pgbug" }, {pgbug, "pgbug" },
{sbrkbugs, "sbrkbugs" }, {sbrkbugs, "sbrkbugs" },
{sbrklast, "sbrklast"}, {sbrklast, "sbrklast"},
@ -2985,7 +2986,6 @@ main(int argc, char *argv[])
{badarg, "badarg" }, {badarg, "badarg" },
{execout, "execout"}, {execout, "execout"},
{diskfull, "diskfull"}, {diskfull, "diskfull"},
{texttest, "texttest"},
{ 0, 0}, { 0, 0},
}; };