File tree Expand file tree Collapse file tree 2 files changed +13
-0
lines changed
Expand file tree Collapse file tree 2 files changed +13
-0
lines changed Original file line number Diff line number Diff line change 1+ ## 1.7.1
2+
3+ * The external symbols test now only runs on Linux. It assumes a Linux
4+ environment. Reported by Carlo Cabrera. GitHub #304 .
5+
16## 1.7.0 - 2022-09-28
27
38* ` FD_CLOEXEC ` is now set on platforms that do not support ` O_CLOEXEC ` .
Original file line number Diff line number Diff line change 55
66use FindBin qw( $Bin ) ;
77
8+ _skip_tests_if_not_linux();
89_skip_tests_if_required_modules_are_not_present();
910_skip_tests_if_nm_is_not_present();
1011_test_libs_external_symbols();
1112
1213done_testing();
1314
15+ sub _skip_tests_if_not_linux {
16+ return if $^O eq ' linux' ;
17+
18+ print " 1..0 # skip all tests skipped - this test requires Linux.\n " ;
19+ exit 0;
20+ }
21+
1422sub _skip_tests_if_required_modules_are_not_present {
1523 eval <<'EOF' ;
1624 use Test::More 0.88;
You can’t perform that action at this time.
0 commit comments