tests: regressions: Allow non-exec stack test to be skipped.

Currently fails on aarch64 because of a buggy GCC.
This commit is contained in:
Richard W.M. Jones
2014-07-15 18:22:05 +00:00
parent 9e01541e48
commit 9cdaaeee40

View File

@@ -18,6 +18,11 @@
use strict;
use warnings;
if ($ENV{SKIP_TEST_NOEXEC_STACK_PL}) {
print "$0: skipped test because environment variable is set\n";
exit 77;
}
die("NOEXEC_CHECK not set") unless(exists($ENV{NOEXEC_CHECK}));
my @files = split(/ /, $ENV{NOEXEC_CHECK});