Handle multiple binaries in one crate

This commit is contained in:
Dave Rolsky
2023-12-10 11:03:10 -06:00
parent 9fb7236944
commit c507aeb1b5
6 changed files with 43 additions and 10 deletions

View File

@@ -37,7 +37,8 @@ sub main {
);
for my $bin (
path( qw( . target ), $target, qw( debug test-project ) ),
path( qw( . target ), $target, qw( debug bin1 ) ),
path( qw( . target ), $target, qw( debug bin2 ) ),
path( qw( . subcrate target ), $target, qw( debug subcrate ) )
) {
check_binary( $bin, $expect_file_re, $expect_stripped );