Skip to content

Commit 0a156c8

Browse files
authored
Merge pull request #41 from charsbar/skip_fork_test_on_win32
Skip fork test on win32
2 parents b0e813c + ef1264a commit 0a156c8

2 files changed

Lines changed: 14 additions & 0 deletions

File tree

.github/workflows/build.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,18 @@ jobs:
2121
- name: Run tests
2222
run: prove -lr -j4 t
2323

24+
sqlite-win:
25+
runs-on: windows-latest
26+
27+
steps:
28+
- uses: actions/checkout@v1
29+
- name: perl -V
30+
run: perl -V
31+
- name: Install dependencies
32+
run: curl -sL https://git.io/cpm | perl - install -g --with-recommends --with-test --with-configure --show-build-log-on-failure --feature=test_sqlite
33+
- name: Run tests
34+
run: prove -lr -j4 t
35+
2436
mysql:
2537
runs-on: ubuntu-latest
2638

t/60-fork.t

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ use Test::More;
77
use DodTestUtil;
88

99
BEGIN {
10+
plan skip_all => 'Not for Win32' if $^O eq 'MSWin32';
11+
1012
my @requires = qw(
1113
Parallel::ForkManager
1214
Test::SharedFork

0 commit comments

Comments
 (0)