You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Fix bad sysctl command in README
* Add --suite and --test flags to integration tests
So we can run a single suite or a single test without having to edit
any code.
* Drop several skipped integration tests
Many of these skips are no longer necessary. Didn't do an exhaustive
check of all skipped tests, so this is just a start.
* Simplify cleanup make target
Co-authored-by: Josh Mock <[email protected]>
Copy file name to clipboardExpand all lines: test/integration/README.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -37,7 +37,7 @@ make integration
37
37
38
38
If Elasticsearch doesn't come up, run `make integration-cleanup` and then `DETACH=false .ci/run-elasticsearch.sh` manually to read the startup logs.
39
39
40
-
If you get an error about `vm.max_map_count` being too low, run `sudo sysctl -w vm.max_map_count=262144` to update the setting until the next reboot, or `sudo sysctl -w vm.max_map_count=262144 | sudo tee -a /etc/sysctl.conf` to update the setting permanently.
40
+
If you get an error about `vm.max_map_count` being too low, run `sudo sysctl -w vm.max_map_count=262144` to update the setting until the next reboot, or `sudo sysctl -w vm.max_map_count=262144; echo 'vm.max_map_count=262144' | sudo tee -a /etc/sysctl.conf` to update the setting permanently.
0 commit comments