2007-01-07 15:19:34 +00:00
|
|
|
#!/bin/sh
|
2008-09-25 12:13:34 +00:00
|
|
|
# Copyright 2006 Bernhard Reutner-Fischer
|
2010-08-16 18:14:46 +00:00
|
|
|
# Licensed under GPLv2 or later, see file LICENSE in this source tree.
|
2007-01-07 15:19:34 +00:00
|
|
|
|
2009-11-04 23:41:22 +00:00
|
|
|
. ./testing.sh
|
2007-01-07 15:19:34 +00:00
|
|
|
a="taskset"
|
|
|
|
|
|
|
|
# testing "test name" "opts" "expected result" "file inp" "stdin"
|
2008-03-22 17:46:16 +00:00
|
|
|
testing "taskset (get from pid 1)" "$a -p 1 >/dev/null;echo \$?" "0\n" "" ""
|
|
|
|
testing "taskset (invalid pid)" "$a -p 0 >/dev/null 2>&1;echo \$?" "1\n" "" ""
|
2007-01-07 15:19:34 +00:00
|
|
|
testing "taskset (set_aff, needs CAP_SYS_NICE)" \
|
2009-07-18 11:08:49 +00:00
|
|
|
"$a 0x1 $SHELL -c '$a -p \$\$ | grep \"current affinity mask: 1\" >/dev/null'; echo \$?" \
|
|
|
|
"0\n" "" ""
|
2007-01-07 15:19:34 +00:00
|
|
|
|
|
|
|
unset a
|
|
|
|
exit $FAILCOUNT
|