2007-01-07 20:49:34 +05:30
|
|
|
#!/bin/sh
|
|
|
|
|
2008-09-25 17:43:34 +05:30
|
|
|
# Copyright 2006 Bernhard Reutner-Fischer
|
2007-01-07 20:49:34 +05:30
|
|
|
# Licensed under GPL v2 or later, see file LICENSE for details.
|
|
|
|
|
|
|
|
. testing.sh
|
|
|
|
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)" \
|
|
|
|
"$a 0x1 $SHELL -c $a\ -p\ \$$\|grep\ \"current\ affinity\ mask:\ 1\" >/dev/null;echo \$?" \
|
|
|
|
"0\n" "" ""
|
|
|
|
|
|
|
|
unset a
|
|
|
|
exit $FAILCOUNT
|