1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00

r21545: Fix pidl test.

(This used to be commit ed0a7f5091)
This commit is contained in:
Jelmer Vernooij 2007-02-26 17:43:01 +00:00 committed by Gerald (Jerry) Carter
parent e31197308c
commit 43679c82f4

View File

@ -5,7 +5,7 @@
use strict;
use warnings;
use Test::More tests => 11;
use Test::More tests => 13;
use FindBin qw($RealBin);
use lib "$RealBin";
use Util;
@ -65,8 +65,8 @@ is_deeply($conformance, {
%hf_used = ( hf_bla => 1 );
test_warnings("", sub {
CheckUsed({ header_fields => { INDEX => "hf_bla" }})});
CheckUsed({ header_fields => { foo => { INDEX => "hf_bla" }}})});
%hf_used = ( );
test_warnings("nofile:0: hf field `hf_bla' not used\n", sub {
CheckUsed({ header_fields => { INDEX => "hf_bla" }})});
test_warnings("hf field `hf_bla' not used\n", sub {
CheckUsed({ header_fields => { foo => { INDEX => "hf_bla" }}})});