diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2013-01-29 16:14:07 -0500 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2013-01-29 19:01:41 -0500 |
commit | 7bcd865d386d96caac83cb1c589fdb8f9ce3b081 (patch) | |
tree | 611e8c042c435820ffa283a191c0ae8a89c106c7 /test | |
parent | 1682ff60114b7a57972a03aa99f9864064593f72 (diff) | |
download | systemd-7bcd865d386d96caac83cb1c589fdb8f9ce3b081.tar.gz |
test: some trivial fixes to test scripts
- fix typo
- use compiled systemd-nspawn
- drop --capability=... from systemd-nspawn invocation, is is the default now
- simplify sudo make invocations
Diffstat (limited to 'test')
-rw-r--r-- | test/README.testsuite | 4 | ||||
-rwxr-xr-x | test/TEST-01-BASIC/test.sh | 6 | ||||
-rwxr-xr-x | test/TEST-03-JOBS/test.sh | 2 |
3 files changed, 6 insertions, 6 deletions
diff --git a/test/README.testsuite b/test/README.testsuite index 0f96b984a9..54d0eaac50 100644 --- a/test/README.testsuite +++ b/test/README.testsuite @@ -28,8 +28,8 @@ $ sudo make clean setup run If you want to log in the testsuite virtual machine, you can specify additional kernel command line parameter with $DEBUGFAIL. -$ sudo sh -c 'DEBUGFAIL="systemd.unit=multi-user.target" make clean setup run' +$ sudo make DEBUGFAIL="systemd.unit=multi-user.target" clean setup run you can even skip the "clean" and "setup" if you want to run the machine again. -$ sudo sh -c 'DEBUGFAIL="systemd.unit=multi-user.target" make run' +$ sudo make DEBUGFAIL="systemd.unit=multi-user.target" run diff --git a/test/TEST-01-BASIC/test.sh b/test/TEST-01-BASIC/test.sh index 7d2e3d4bd7..90492079e4 100755 --- a/test/TEST-01-BASIC/test.sh +++ b/test/TEST-01-BASIC/test.sh @@ -33,7 +33,7 @@ run_qemu() { run_nspawn() { - systemd-nspawn -b -D $TESTDIR/nspawn-root --capability=CAP_AUDIT_CONTROL,CAP_AUDIT_WRITE /usr/lib/systemd/systemd + ../../systemd-nspawn -b -D $TESTDIR/nspawn-root /usr/lib/systemd/systemd ret=1 [[ -e $TESTDIR/nspawn-root/testok ]] && ret=0 cp -a $TESTDIR/nspawn-root/failed $TESTDIR @@ -213,7 +213,7 @@ EOF # install ld.so.conf* and run ldconfig cp -a /etc/ld.so.conf* $initdir/etc ldconfig -r "$initdir" - ddebug "Strip binaeries" + ddebug "Strip binaries" find "$initdir" -perm +111 -type f | xargs strip --strip-unneeded | ddebug # copy depmod files @@ -230,7 +230,7 @@ EOF ddebug "cp -ar $TESTDIR/root $TESTDIR/nspawn-root" cp -ar $TESTDIR/root $TESTDIR/nspawn-root # we don't mount in the nspawn root - rm -fr $TESTDIR/nspawn-root/etc/fstab + rm -f $TESTDIR/nspawn-root/etc/fstab ddebug "umount $TESTDIR/root" umount $TESTDIR/root diff --git a/test/TEST-03-JOBS/test.sh b/test/TEST-03-JOBS/test.sh index 4cfb2a504a..bd211f3ad5 100755 --- a/test/TEST-03-JOBS/test.sh +++ b/test/TEST-03-JOBS/test.sh @@ -33,7 +33,7 @@ run_qemu() { run_nspawn() { - systemd-nspawn -b -D $TESTDIR/nspawn-root --capability=CAP_AUDIT_CONTROL,CAP_AUDIT_WRITE /usr/lib/systemd/systemd + ../../systemd-nspawn -b -D $TESTDIR/nspawn-root /usr/lib/systemd/systemd ret=1 [[ -e $TESTDIR/nspawn-root/testok ]] && ret=0 cp -a $TESTDIR/nspawn-root/failed $TESTDIR |