fe75e26ab6
The entire tree's polluted with inappropriate trailing whitespace. This commit rids our environment of all of those useless keystrokes. Unfortunately, it sure ain't a permanent solution and requires every contributor to instruct their editor(s) to prevent or eliminate them. Plus it's strongly recommended we all insert something like what's shown below to our '.gitconfig' file so as to provide at least some warnings when we try to apply any patches (git am) that do contain the #@!%& things! References(s): ~/.gitconfig excerpt --------------------------------- [core] whitespace = trailing-space, space-before-tab, blank-at-eof [apply] whitespace = warn --------------------------------- ~/.gitconfig excerpt Signed-off-by: Jim Warner <james.warner@comcast.net>
54 lines
1.1 KiB
Makefile
54 lines
1.1 KiB
Makefile
AUTOMAKE_OPTIONS = dejagnu
|
|
export DEJAGNU
|
|
|
|
# Programs that are expected across the board.
|
|
DEJATOOL =
|
|
|
|
noinst_PROGRAMS = test-schedbatch
|
|
|
|
test_schedbatch_SOURCES = ps.test/test-schedbatch.c
|
|
|
|
if LINUX
|
|
# These should be in defined in 'across the board' scope, but are
|
|
# temporarily disabled on other than linux systems, see commit
|
|
# 3d807ae853b8b4264da156065b34f1447658a8ba
|
|
DEJATOOL += \
|
|
kill \
|
|
pmap \
|
|
slabtop \
|
|
sysctl
|
|
|
|
DEJATOOL += \
|
|
free \
|
|
lib \
|
|
pgrep \
|
|
pkill \
|
|
ps \
|
|
pwdx \
|
|
uptime \
|
|
vmstat \
|
|
w
|
|
endif
|
|
|
|
EXTRA_DIST = \
|
|
config/unix.exp \
|
|
global-conf.exp \
|
|
free.test/free.exp \
|
|
kill.test/kill.exp \
|
|
lib.test/fileutils.exp \
|
|
lib.test/fileutils_badfd.sh \
|
|
lib.test/fileutils_full.sh \
|
|
lib.test/strutils.exp \
|
|
pgrep.test/pgrep.exp \
|
|
pkill.test/pkill.exp \
|
|
pmap.test/pmap.exp \
|
|
ps.test/ps_output.exp \
|
|
ps.test/ps_personality.exp \
|
|
ps.test/ps_sched_batch.exp \
|
|
pwdx.test/pwdx.exp \
|
|
slabtop.test/slabtop.exp \
|
|
sysctl.test/sysctl_read.exp \
|
|
uptime.test/uptime.exp \
|
|
vmstat.test/vmstat.exp \
|
|
w.test/w.exp
|