From 8700564197ad34e88f4f0f51a8e2aa0f6b138e7a Mon Sep 17 00:00:00 2001 From: Todd Strader Date: Thu, 10 Oct 2019 13:08:22 -0400 Subject: [PATCH] Build examples using only their Makefiles. --- test_regress/t/t_a4_examples.pl | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/test_regress/t/t_a4_examples.pl b/test_regress/t/t_a4_examples.pl index 43d55bcf5..070484da8 100755 --- a/test_regress/t/t_a4_examples.pl +++ b/test_regress/t/t_a4_examples.pl @@ -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;