Build examples using only their Makefiles.

This commit is contained in:
Todd Strader 2019-10-10 13:08:22 -04:00
parent af8cc9127f
commit 8700564197

View File

@ -9,8 +9,10 @@ if (!$::Driver) { use FindBin; exec("$FindBin::Bin/bootstrap.pl", @ARGV, $0); di
scenarios(dist => 1);
my $root = "..";
run(cmd=>["cd $root && make examples"]);
my @examples = sort(glob("../examples/*"));
for my $example (@examples) {
run(cmd=>["make -C $example"]);
}
ok(1);
1;