-
Notifications
You must be signed in to change notification settings - Fork 424
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Turn off Python sub-interpreter tests (#26614)
This PR turns off Python sub-interpreter tests. These tests have wildly unpredictable output due to race conditions. This PR also adds a warning to the docs warning users about this. The unpredictable behavior is caused by race conditions when creating/destroying sub-interpreters, see #26615. This PR has a few other nit cleanups. [Reviewed by @lydia-duncan]
- Loading branch information
Showing
8 changed files
with
30 additions
and
18 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
1 change: 0 additions & 1 deletion
1
test/library/packages/Python/correctness/compareIterationPatterns.good
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 |
---|---|---|
@@ -1,6 +1,5 @@ | ||
data: 1 2 3 4 5 6 7 8 9 10 | ||
Serial Python result: 2 2 4 4 6 6 8 8 10 10 | ||
Parallel Python result: 2 2 4 4 6 6 8 8 10 10 | ||
Parallel Python SubInterpreter result: 2 2 4 4 6 6 8 8 10 10 | ||
Serial Chapel result: 2 2 4 4 6 6 8 8 10 10 | ||
Parallel Chapel result: 2 2 4 4 6 6 8 8 10 10 |
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 |
---|---|---|
@@ -1 +1 @@ | ||
feature request: ability to set override the global checkExceptions | ||
feature request: ability to override the global checkExceptions |
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 @@ | ||
sub interpreters are highly unstable |
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 |
---|---|---|
|
@@ -2,3 +2,4 @@ | |
*.good | ||
*.execopts | ||
*.compopts | ||
*.noexec |
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 |
---|---|---|
@@ -1,2 +1,5 @@ | ||
*.chpl | ||
*.good | ||
*.execopts | ||
*.compopts | ||
*.noexec |
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