1
0
mirror of https://github.com/libuv/libuv synced 2025-03-28 21:13:16 +00:00

test: disallow running the test suite as root

The test suite is known to have issues when run as root. This
commit prevents the test suite from running when the euid is 0.

Fixes: https://github.com/libuv/libuv/issues/2549
PR-URL: https://github.com/libuv/libuv/pull/2585
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
This commit is contained in:
cjihrig 2019-12-23 10:18:02 -05:00
parent 2ab3dc1567
commit af45b6ba2f
No known key found for this signature in database
GPG Key ID: 7434390BDBE9B9C5

View File

@ -51,6 +51,13 @@ static int maybe_run_test(int argc, char **argv);
int main(int argc, char **argv) {
#ifndef _WIN32
if (0 == geteuid() && NULL == getenv("UV_RUN_AS_ROOT")) {
fprintf(stderr, "The libuv test suite cannot be run as root.\n");
return EXIT_FAILURE;
}
#endif
if (platform_init(argc, argv))
return EXIT_FAILURE;