diff options
author | Tim Beale <timbeale@catalyst.net.nz> | 2019-03-11 16:03:34 +1300 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2019-03-12 02:56:05 +0000 |
commit | a68e8af2d1b92ba9a94fc7cc1eb98cdca687d5fd (patch) | |
tree | 9099c9c23fd57bb51bfb72f6e319272b815184f6 /source4 | |
parent | 345c33d1d0b7a33109ab2cf82774be21ffce7857 (diff) | |
download | samba-a68e8af2d1b92ba9a94fc7cc1eb98cdca687d5fd.tar.gz |
testsuite: Remove build_farm testsuites
This test code is not run (and has not been run for about a decade).
Let's remove it - it's there in the git history if we ever want to try
to repurpose it again.
Signed-off-by: Tim Beale <timbeale@catalyst.net.nz>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Autobuild-User(master): Andrew Bartlett <abartlet@samba.org>
Autobuild-Date(master): Tue Mar 12 02:56:05 UTC 2019 on sn-devel-144
Diffstat (limited to 'source4')
-rw-r--r-- | source4/selftest/win/README | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/source4/selftest/win/README b/source4/selftest/win/README index fc934385c4d..f6e716c8da0 100644 --- a/source4/selftest/win/README +++ b/source4/selftest/win/README @@ -70,52 +70,3 @@ remotely administered with telnet. Specifically, this will allow us to use 'make wintest' in Samba 4 to perform smbtorture tests against a Windows host, and perform tests from a Windows client to a Samba server. -INTEGRATING WITH THE BUILD FARM - -Follow the standard steps to add a host to the build farm. The major -difference is that we will need to run these tests as root. To run the -Windows tests in the build farm, a .fns file will need to be created for -your new host that exports a WINTESTCONF environment variable pointing to a -config file used by 'make wintest'. An example of this config file can be -found at source/selftest/win/test_win.conf in the Samba 4 source tree. - -I've also included the bnhtest.fns file that I'm using for my build farm host -below, as an example. It was modified from generic.fns. - -action_test_windows() { - do_make wintest - w_status=$? - echo "WINTEST STATUS: $w_status" - return $w_status; -} - -per_run_hook - -system=`uname` - -export WINTESTCONF="/home/build/win/test_win.conf" - -for compiler in gcc cc icc; do - - # arrgh, "which" gives no err code on solaris - path=`which $compiler` - if [ -x "$path" ]; then - - if $compiler -v 2>&1 | grep gcc.version > /dev/null; then - isgcc=1 - CFLAGS="-Wall" - export CFLAGS - else - CFLAGS="" - export CFLAGS - isgcc=0 - fi - if [ $compiler = gcc -o $isgcc = 0 ]; then - - # only attempt samba4 if we have perl - if which perl > /dev/null; then - test_tree samba4 source $compiler configure build install test_windows test - fi - fi - fi -done |