From: Evgeny Vereshchagin Date: Fri, 9 Nov 2018 02:14:04 +0000 (+0100) Subject: udev-test: remove a check for whether the test is run in a container X-Git-Tag: v240~358^2~1 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=881886ef08d50951159633248b0f73977c5d6924;p=thirdparty%2Fsystemd.git udev-test: remove a check for whether the test is run in a container It's too broad a check that prevents the test from running on Travis CI. --- diff --git a/test/udev-test.pl b/test/udev-test.pl index 61bd3d703a1..05b3e171881 100755 --- a/test/udev-test.pl +++ b/test/udev-test.pl @@ -1646,13 +1646,6 @@ if ($? >> 8 == 0) { exit($EXIT_TEST_SKIP); } -# skip the test when running in a container -system("systemd-detect-virt", "-c", "-q"); -if ($? >> 8 == 0) { - print "Running in a container, skipping the test.\n"; - exit($EXIT_TEST_SKIP); -} - udev_setup(); my $test_num = 1;