9 lines
208 B
C
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
|
|
}
|