9ca51c2d15
git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@10188 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
63 lines
1004 B
Plaintext
63 lines
1004 B
Plaintext
start:regnotif_null
|
|
description:regnotif with no argument
|
|
cmd:regnotif
|
|
check:rc==0
|
|
check:output=~Usage
|
|
end
|
|
|
|
start:regnotif_o
|
|
description:regnotif with normal argument
|
|
cmd:echo "hello,world" > test.pm
|
|
check:rc==0
|
|
cmd:regnotif test.pm nodelist -o a,d
|
|
check:rc==0
|
|
cmd:tabdump notification
|
|
check:rc==0
|
|
check:output=~"test.pm","nodelist","a,d"
|
|
cmd:unregnotif test.pm
|
|
cmd:rm -f test.pm
|
|
end
|
|
|
|
|
|
start:regnotif_err
|
|
description:regnotif with error arguments
|
|
cmd:echo "hello,world" > test.pm
|
|
check:rc==0
|
|
cmd:regnotif test.pm -o a,d
|
|
check:output=~Usage
|
|
cmd:regnotif nodelist -o a,d
|
|
check:output=~Usage
|
|
cmd:regnotif nodelist
|
|
check:output=~Usage
|
|
cmd:rm -f test.pm
|
|
end
|
|
|
|
|
|
|
|
start:regnotif_h
|
|
description:regnotif -h and --help
|
|
cmd:regnotif -h
|
|
check:rc==0
|
|
check:output=~Usage
|
|
cmd:regnotif --help
|
|
check:rc==0
|
|
check:output=~Usage
|
|
end
|
|
|
|
|
|
start:regnotif_v
|
|
description:regnotif -v and --version
|
|
cmd:regnotif -v
|
|
check:rc==0
|
|
check:output=~Version|version
|
|
cmd:regnotif --version
|
|
check:rc==0
|
|
check:output=~Version|version
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
|