-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed parking related logic issue in crossbeam_workstealing_pool and …
…added script to test different feature sets on travis
- Loading branch information
Showing
8 changed files
with
148 additions
and
15 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
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ name = "executors" | |
# NB: When modifying, also modify: | ||
# 1. html_root_url in lib.rs | ||
# 2. number in readme (for breaking changes) | ||
version = "0.5.1" | ||
version = "0.5.2" | ||
authors = ["Lars Kroll <[email protected]>"] | ||
edition = "2018" | ||
description = "A collection of high-performance task executors." | ||
|
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#!/bin/bash | ||
set +e | ||
|
||
echo "%%%%%% Testing default features %%%%%%" | ||
cargo test | ||
echo "%%%%%% Finished testing default features %%%%%%" | ||
|
||
echo "%%%%%% Testing feature ws-no-park %%%%%%" | ||
cargo test --features ws-no-park | ||
echo "%%%%%% Finished testing feature ws-no-park %%%%%%" | ||
|
||
echo "%%%%%% Testing feature !ws-timed-fairness %%%%%%" | ||
cargo test --no-default-features --features threadpool-exec, cb-channel-exec, workstealing-exec, defaults | ||
echo "%%%%%% Finished testing feature !ws-timed-fairness %%%%%%" |