1
0
mirror of https://github.com/systemd/systemd.git synced 2025-01-11 09:18:07 +03:00

tests: skip udev-test if running inside a chroot

This commit is contained in:
Davide Cavalca 2016-07-27 14:17:52 -07:00
parent b6b609dbc2
commit e4d214efc2

View File

@ -1535,6 +1535,13 @@ if (!($<==0)) {
exit($EXIT_TEST_SKIP);
}
# skip the test when running in a chroot
system("systemd-detect-virt", "-r", "-q");
if ($? >> 8 == 0) {
print "Running in a chroot, skipping the test.\n";
exit($EXIT_TEST_SKIP);
}
# skip the test when running in a container
system("systemd-detect-virt", "-c", "-q");
if ($? >> 8 == 0) {