2007-01-07 20:49:34 +05:30
|
|
|
#!/bin/sh
|
2008-09-25 17:43:34 +05:30
|
|
|
# Copyright 2006 Bernhard Reutner-Fischer
|
2010-08-16 23:44:46 +05:30
|
|
|
# Licensed under GPLv2 or later, see file LICENSE in this source tree.
|
2007-01-07 20:49:34 +05:30
|
|
|
|
2009-11-05 05:11:22 +05:30
|
|
|
. ./testing.sh
|
2007-01-07 20:49:34 +05:30
|
|
|
a="taskset"
|
|
|
|
|
|
|
|
# testing "test name" "opts" "expected result" "file inp" "stdin"
|
2008-03-22 23:16:16 +05:30
|
|
|
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 20:49:34 +05:30
|
|
|
testing "taskset (set_aff, needs CAP_SYS_NICE)" \
|
2009-07-18 16:38:49 +05:30
|
|
|
"$a 0x1 $SHELL -c '$a -p \$\$ | grep \"current affinity mask: 1\" >/dev/null'; echo \$?" \
|
|
|
|
"0\n" "" ""
|
2007-01-07 20:49:34 +05:30
|
|
|
|
|
|
|
unset a
|
|
|
|
exit $FAILCOUNT
|