diff options
Diffstat (limited to 'source4')
-rw-r--r-- | source4/script/tests/Samba4.pm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/source4/script/tests/Samba4.pm b/source4/script/tests/Samba4.pm index 4ab720c7bf..ae6e6b326c 100644 --- a/source4/script/tests/Samba4.pm +++ b/source4/script/tests/Samba4.pm @@ -679,8 +679,9 @@ sub check_env($$) { my ($self, $envvars) = @_; - # TODO ... - return 1; + return 1 if (-p $envvars->{SMBD_TEST_FIFO}); + + return 0; } sub setup_env($$$) |