mirror of
https://git.proxmox.com/git/systemd
synced 2026-01-25 10:17:58 +00:00
The test-udev binary was moved to $libdir/udev, update the test
accordingly. Followup fix for 7f15fae093
14 lines
341 B
Bash
Executable File
14 lines
341 B
Bash
Executable File
#!/bin/sh
|
|
# autopkgtest check: Run upstream udev test script
|
|
# (C) 2016 Canonical Ltd.
|
|
# Author: Martin Pitt <martin.pitt@ubuntu.com>
|
|
set -euC
|
|
|
|
TEST_DIR=${ADTTMP:=$(mktemp -d)}
|
|
mkdir -p $TEST_DIR/test
|
|
tar -C $TEST_DIR/test -xf test/sys.tar.xz
|
|
cp test/udev-test.pl $TEST_DIR
|
|
cp /usr/lib/*/udev/test-udev $TEST_DIR
|
|
cd $TEST_DIR
|
|
./udev-test.pl
|