1# test broken config 2 3use strict; 4use warnings; 5 6our %args = ( 7 client => { 8 noclient => 1, 9 }, 10 relayd => { 11 protocol => [ "foo" ], 12 dryrun => qr/invalid protocol type: foo/, 13 }, 14 server => { 15 noserver => 1, 16 }, 17 nocheck => 1, 18); 19 201; 21