From 0eb3cc88504b5d8f740764047ac5162b67992386 Mon Sep 17 00:00:00 2001 From: Jan Synacek Date: Wed, 10 Dec 2014 10:20:11 +0100 Subject: test: fix some tests when running inside a container --- test/udev-test.pl | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'test') diff --git a/test/udev-test.pl b/test/udev-test.pl index 14f11df8af..3e05b61777 100755 --- a/test/udev-test.pl +++ b/test/udev-test.pl @@ -27,6 +27,7 @@ my $udev_dev = "test/dev"; my $udev_run = "test/run"; my $udev_rules_dir = "$udev_run/udev/rules.d"; my $udev_rules = "$udev_rules_dir/udev-test.rules"; +my $EXIT_TEST_SKIP = 77; my @tests = ( { @@ -1485,6 +1486,13 @@ if (!($<==0)) { exit; } +# 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; -- cgit v1.2.3-54-g00ecf