diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2016-03-16 01:13:29 -0400 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2016-03-16 01:13:29 -0400 |
commit | fdbf7b554ed89d8a76214cbb4b919c2292e7168b (patch) | |
tree | b89ca9e22680c4d7a39129ee147bdfd58553cf77 /test | |
parent | 897d2029235b39c06d41ea9fbb1036ccdba0e811 (diff) | |
parent | a1d2de078c910ccda89ea5ca25494aaa6fa8f3b5 (diff) |
Merge pull request #2797 from evverx/selinux-use-raw
selinux: use *_raw API from libselinux
Diffstat (limited to 'test')
-rw-r--r-- | test/test-functions | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/test/test-functions b/test/test-functions index 92e1ae9f8d..29f647ece4 100644 --- a/test/test-functions +++ b/test/test-functions @@ -199,6 +199,17 @@ EOF chmod 0755 $_valgrind_wrapper } +create_strace_wrapper() { + local _strace_wrapper=$initdir/$ROOTLIBDIR/systemd-under-strace + ddebug "Create $_strace_wrapper" + cat >$_strace_wrapper <<EOF +#!/bin/bash + +exec strace -D -o /strace.out $ROOTLIBDIR/systemd "\$@" +EOF + chmod 0755 $_strace_wrapper +} + install_fsck() { dracut_install /sbin/fsck* dracut_install -o /bin/fsck* |