mud/fluffos-2.23-ds03/testsuite/single/tests/efuns/set_privs.c
2020-09-06 05:43:07 -07:00

9 lines
208 B
C

void do_tests() {
#ifdef __PRIVS__
set_privs(this_object(), "foo");
ASSERT(query_privs(this_object()) == "foo");
set_privs(this_object(), 0);
ASSERT(query_privs(this_object()) == 0);
#endif
}