Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/httpd-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@ jobs:

steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Checkout httpd ${{ matrix.branch }}
uses: actions/checkout@v4
with:
Expand All @@ -57,7 +59,7 @@ jobs:
cpanm --notest Net::SSL LWP::Protocol::https \
LWP::Protocol::AnyEvent::http ExtUtils::Embed Test::More \
AnyEvent DateTime HTTP::DAV FCGI \
AnyEvent::WebSocket::Client Apache::Test
AnyEvent::WebSocket::Client

- name: Build httpd
working-directory: httpd
Expand Down
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "Apache-Test"]
path = Apache-Test
url = https://github.com/apache/perl-apache-test
1 change: 1 addition & 0 deletions Apache-Test
Submodule Apache-Test added at ed33bc
16 changes: 10 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,15 +49,19 @@ cpanm --quiet --showdeps Bundle::ApacheTest|grep -v Crypt::SSLeay|xargs cpanm

If you don't care how it works and just want to run the tests:

1. You need an installation of Apache (2.4.x thru trunk).
2. Any DSOs you wish to use should be configured in that Apache's
`httpd.conf` (the test harness will pick this configuration up).
3. Setup:
1. Clone this repository:
```bash
git clone --recurse-submodule https://github.com/apache/httpd-tests
```
2. You need an installation of Apache httpd (2.4.x or trunk).
3. Any DSOs you wish to use should be configured in that Apache's
`httpd.conf` (the test harness will pick this configuration up).
4. Setup:
```bash
perl Makefile.PL -apxs /path/to/apache/bin/apxs
```
4. Run the tests:
```
5. Run the tests:
```bash
t/TEST
```
5. Evaluate test output.
Expand Down
Loading