File: test_nodm

package info (click to toggle)
nodm 0.13-5
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster
  • size: 548 kB
  • sloc: ansic: 1,942; sh: 368; makefile: 84
file content (29 lines) | stat: -rwxr-xr-x 641 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/bin/sh

case "$1" in
	'')
#		test "$2" != "a" && echo "\$3 is '$2' instead of 'a'"
#		test "$3" != "b" && echo "\$4 is '$3' instead of 'b'"
#		test "$4" != "c" && echo "\$5 is '$4' instead of 'c'"
		echo "PATH is: $PATH"
		echo "USER is: $USER"
		echo "HOME is: $HOME"
		echo "pwd: `pwd`"
		echo "id: `id`"
		pstree `pgrep nodm|head -1`
#		set > test_nodm.env.tmp
		exit 0
		;;
	*)
		export NODM_USER=$1
		export NODM_XINIT="time"
		export NODM_XSESSION="`pwd`/$0"
#		export NODM_X_OPTIONS="runtest a b c"
		export NODM_MIN_SESSION_TIME=60
		exec ./nodm --session `pwd`/nodm
		;;
#	'')
#		echo "Use: $0 username" >&2
#		exit 1
#		;;
esac