Implement two basic "strace -f" tests

* Makefile.am (SUBDIRS): Add tests.
* configure.ac (AC_CONFIG_FILES): Add tests/Makefile.
* tests/.gitignore: New file.
* tests/Makefile.am: Likewise.
* tests/init.sh: Likewise.
* tests/ptrace_setoptions: Likewise.
* tests/strace-f: Likewise.
diff --git a/tests/.gitignore b/tests/.gitignore
new file mode 100644
index 0000000..cf5bbd7
--- /dev/null
+++ b/tests/.gitignore
@@ -0,0 +1 @@
+check.log
diff --git a/tests/Makefile.am b/tests/Makefile.am
new file mode 100644
index 0000000..93636ca
--- /dev/null
+++ b/tests/Makefile.am
@@ -0,0 +1,7 @@
+# Automake input for strace tests.
+
+TESTS = ptrace_setoptions strace-f
+
+EXTRA_DIST = init.sh $(TESTS)
+
+CLEANFILES = check.log
diff --git a/tests/init.sh b/tests/init.sh
new file mode 100644
index 0000000..a016b1c
--- /dev/null
+++ b/tests/init.sh
@@ -0,0 +1,21 @@
+#!/bin/sh
+
+ME_="${0##*/}"
+
+warn_() { printf >&2 '%s\n' "$*"; }
+fail_() { warn_ "$ME_: failed test: $*"; exit 1; }
+skip_() { warn_ "$ME_: skipped test: $*"; exit 77; }
+framework_failure_() { warn_ "$ME_: framework failure: $*"; exit 99; }
+
+check_prog()
+{
+	"$@" --version > /dev/null 2>&1 ||
+		framework_failure_ "$* is not available"
+}
+
+check_strace()
+{
+	STRACE=${*-../strace}
+	$STRACE -V > /dev/null ||
+		framework_failure_ "$STRACE is not available"
+}
diff --git a/tests/ptrace_setoptions b/tests/ptrace_setoptions
new file mode 100755
index 0000000..b0a1c87
--- /dev/null
+++ b/tests/ptrace_setoptions
@@ -0,0 +1,18 @@
+#!/bin/sh
+
+# Ensure that strace tests kernel PTRACE_O_TRACECLONE support properly.
+
+. "${srcdir=.}/init.sh"
+
+case "$(uname -rs)" in
+	Linux\ 2.6.*) ;;
+	*) skip_ 'The kernel is not Linux 2.6.*' ;;
+esac
+
+check_strace
+check_prog timeout
+
+timeout -s 9 9 \
+$STRACE -df -enone /bin/true 2>&1 |
+	fgrep -qx 'ptrace_setoptions = 0xe' ||
+		fail_ 'strace failed to recognize proper kernel PTRACE_O_TRACECLONE support'
diff --git a/tests/strace-f b/tests/strace-f
new file mode 100755
index 0000000..869f331
--- /dev/null
+++ b/tests/strace-f
@@ -0,0 +1,14 @@
+#!/bin/sh
+
+# Ensure that strace -f works.
+
+. "${srcdir=.}/init.sh"
+
+check_strace
+check_prog timeout
+time=/usr/bin/time
+check_prog $time
+
+timeout -s 9 9 \
+$STRACE -f $time /bin/ls > check.log 2>&1 ||
+	{ cat check.log; fail_ 'strace -f does not work'; }