tests_win.sh

来自「samba最新软件」· Shell 代码 · 共 31 行

SH
31
字号
#!/bin/sh if [ `whoami` != "root" ]; then       echo "Windows tests will not run without root privileges."       exit 1 fi if [ "$DO_SOCKET_WRAPPER" = SOCKET_WRAPPER ]; then       echo "Windows tests will not run with socket wrapper enabled."       exit 1 fi if [ ! $WINTESTCONF ]; then	echo "Environment variable WINTESTCONF has not been defined."	echo "Windows tests will not run unconfigured."	exit 1 fi if [ ! -r $WINTESTCONF ]; then       echo "$WINTESTCONF could not be read."       exit 1 fi export WINTEST_DIR=$SRCDIR/selftest/win export TMPDIR=$TMPDIR export NETBIOSNAME=$NETBIOSNAME . $WINTESTCONF $SRCDIR/selftest/test_win.sh

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?