-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactored types in multipart to use size_t, which should be more pla…
…tform-independent when dealing with indexes.
- Loading branch information
1 parent
ebfc9d2
commit 7926904
Showing
4 changed files
with
72 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# Integration Tests | ||
|
||
Handy-Httpd's integration tests are all independent programs that generally | ||
declare the local handy-httpd source as a dependency using a relative path to | ||
the repository's root directory. | ||
|
||
The nature of each test may vary, but they generally start a server and run | ||
some tests on it to ensure that it meets certain expectations, and the program | ||
will fail with a non-zero exit code otherwise. | ||
|
||
For systems with bash, you can use `run-all.sh` to run all integration tests, | ||
one at a time. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#!/usr/bin/env bash | ||
|
||
cd file-test | ||
java Tests.java | ||
cd .. | ||
|
||
cd multipart | ||
dub run --single server.d | ||
cd .. | ||
|
||
cd speed-test | ||
dub run | ||
cd .. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters