Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
test: move tick-processor tests to own directory
The tick-processor tests are inherently non-deterministic. They therefore have false negatives from time to time. They also sometimes leave extra processes running. Move them to their own directory until these issues are sorted. Note that this means that the tests will not be run in CI. Like the inspector tests and other tests, they will have to be run manually when they are wanted. PR-URL: #9506 Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com> Reviewed-By: Matthew Loring <mattloring@google.com> Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
- Loading branch information
Showing
with
24 additions
and 4 deletions.
- +3 −0 Makefile
- +11 −0 test/README.md
- +0 −1 test/parallel/parallel.status
- 0 test/{parallel → tick-processor}/test-tick-processor-builtin.js
- 0 test/{parallel → tick-processor}/test-tick-processor-cpp-core.js
- +3 −3 test/{parallel → tick-processor}/test-tick-processor-unknown.js
- +6 −0 test/tick-processor/testcfg.py
- 0 test/{parallel → tick-processor}/tick-processor-base.js
- +1 −0 vcbuild.bat
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
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
| @@ -15,7 +15,6 @@ prefix parallel | ||
| [$arch==arm || $arch==arm64] | ||
|
|
||
| [$system==solaris] # Also applies to SmartOS | ||
|
|
||
| [$system==freebsd] | ||
|
|
||
File renamed without changes.
File renamed without changes.
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
| @@ -0,0 +1,6 @@ | ||
| import sys, os | ||
| sys.path.append(os.path.join(os.path.dirname(__file__), '..')) | ||
| import testpy | ||
|
|
||
| def GetConfiguration(context, root): | ||
| return testpy.SimpleTestConfiguration(context, root, 'tick-processor') |
File renamed without changes.
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

