Commit 2afb681
authored
Fix sqllogictests test running compatibility (ignore
* Fix test running compatibility
sqllogictests.rs already has various parts of it's Options struct that
provide compatibility with the standard test running options.
Extend this to include the standard `--test-threads` option, so that
running for example `cargo test -- --test-threads 1` in the project root
will succeed. Previously it complained about the unknown option.
This can be useful on a machine with a large number of cores which causes
many tests to build & run in parallel, which in my case caused a crash
due to exhausing the system RAM.
* Make test-threads optional
Make test-threads optional, so that the tests also pass when this is not
passed in. 🤦--test-threads) (apache#16694)1 parent 8596812 commit 2afb681
1 file changed
+6
-0
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
689 | 689 | | |
690 | 690 | | |
691 | 691 | | |
| 692 | + | |
| 693 | + | |
| 694 | + | |
| 695 | + | |
| 696 | + | |
| 697 | + | |
692 | 698 | | |
693 | 699 | | |
694 | 700 | | |
| |||
0 commit comments