We do our best to keep copyright headers up to date, yet git history provides better information on this subject and is more accurate than copyright headers.
12 lines
278 B
Bash
Executable File
12 lines
278 B
Bash
Executable File
#!/bin/sh -efu
|
|
#
|
|
# Copyright (c) 2018 The strace developers.
|
|
# All rights reserved.
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
. "${srcdir=.}/scno_tampering.sh"
|
|
|
|
run_strace -e trace=quotactl -e inject=quotactl:retval=42 ../quotactl-success > "$EXP"
|
|
match_diff "$LOG" "$EXP"
|