dev test pkg/util/tracing
----
bazel query 'kind(.*_test, pkg/util/tracing:all)'
bazel test //pkg/util/tracing:tracing_test --test_env=GOTRACEBACK=all --test_output errors --build_event_binary_file=/tmp/path

dev test pkg/util/tracing/...
----
bazel query 'kind(.*_test, pkg/util/tracing/...)'
bazel test //pkg/util/tracing:tracing_test //pkg/util/tracing/collector:collector_test //pkg/util/tracing/grpcinterceptor:grpcinterceptor_test //pkg/util/tracing/service:service_test --test_env=GOTRACEBACK=all --test_output errors --build_event_binary_file=/tmp/path

dev test pkg/util/tracing -f TestStartChild*
----
bazel query 'kind(.*_test, pkg/util/tracing:all)'
bazel test //pkg/util/tracing:tracing_test --test_env=GOTRACEBACK=all '--test_filter=TestStartChild*' --test_sharding_strategy=disabled --test_output errors --build_event_binary_file=/tmp/path

dev test pkg/util/tracing -f TestStartChild* -v --show-logs
----
bazel query 'kind(.*_test, pkg/util/tracing:all)'
bazel test //pkg/util/tracing:tracing_test --test_env=GOTRACEBACK=all '--test_filter=TestStartChild*' --test_arg -test.v --test_arg -show-logs --test_sharding_strategy=disabled --test_output all --build_event_binary_file=/tmp/path

dev test pkg/util/tracing -f TestStartChild* --ignore-cache
----
bazel query 'kind(.*_test, pkg/util/tracing:all)'
bazel test //pkg/util/tracing:tracing_test --test_env=GOTRACEBACK=all '--test_filter=TestStartChild*' --test_sharding_strategy=disabled --nocache_test_results --test_output errors --build_event_binary_file=/tmp/path

dev test //pkg/testutils --timeout=10s
----
bazel query 'kind(.*_test, pkg/testutils:all)'
bazel test //pkg/testutils:testutils_test --test_env=GOTRACEBACK=all --test_timeout=10 --test_output errors --build_event_binary_file=/tmp/path

dev test pkg/util/tracing -- -s
----
bazel query 'kind(.*_test, pkg/util/tracing:all)'
bazel test //pkg/util/tracing:tracing_test --test_env=GOTRACEBACK=all --test_output errors -s --build_event_binary_file=/tmp/path

dev test ./pkg/roachpb
----
bazel query 'kind(.*_test, pkg/roachpb:all)'
bazel test //pkg/roachpb:roachpb_test --test_env=GOTRACEBACK=all --test_output errors --build_event_binary_file=/tmp/path

dev test //pkg/testutils pkg/util/limit
----
bazel query 'kind(.*_test, pkg/testutils:all)'
bazel query 'kind(.*_test, pkg/util/limit:all)'
bazel test //pkg/testutils:testutils_test //pkg/util/limit:limit_test //pkg/util/limit:another_test --test_env=GOTRACEBACK=all --test_output errors --build_event_binary_file=/tmp/path

dev test pkg/spanconfig --count 5 --race
----
bazel query 'kind(.*_test, pkg/spanconfig:all)'
bazel test --config=race --test_sharding_strategy=disabled //pkg/spanconfig:spanconfig_test --test_env=GOTRACEBACK=all --runs_per_test=5 '--runs_per_test=.*disallowed_imports_test@1' --test_output errors --build_event_binary_file=/tmp/path

dev test pkg/cmd/dev -f TestDataDriven/test --rewrite -v
----
bazel query 'kind(.*_test, pkg/cmd/dev:all)'
bazel info workspace --color=no
bazel test //pkg/cmd/dev:dev_test --test_env=GOTRACEBACK=all --test_env=COCKROACH_WORKSPACE=crdb-checkout --test_arg -rewrite --sandbox_writable_path=crdb-checkout/pkg/cmd/dev --test_filter=TestDataDriven/test --test_arg -test.v --test_sharding_strategy=disabled --nocache_test_results --test_output all --build_event_binary_file=/tmp/path

dev test pkg/server -f=TestSpanStatsResponse -v --count=5 --vmodule=raft=1
----
bazel query 'kind(.*_test, pkg/server:all)'
bazel test //pkg/server:server_test --test_env=GOTRACEBACK=all --test_filter=TestSpanStatsResponse --test_arg -test.v --runs_per_test=5 '--runs_per_test=.*disallowed_imports_test@1' --test_arg -vmodule=raft=1 --test_sharding_strategy=disabled --test_output all --build_event_binary_file=/tmp/path

dev test --short
----
bazel test //pkg:all_tests --test_env=GOTRACEBACK=all --test_arg -test.short --test_output errors --build_event_binary_file=/tmp/path

dev test pkg/ccl/logictestccl -f=TestTenantLogic/3node-tenant/system -v --rewrite
----
bazel query 'kind(.*_test, pkg/ccl/logictestccl:all)'
bazel info workspace --color=no
bazel test //pkg/ccl/logictestccl:logictestccl_test --test_env=GOTRACEBACK=all --test_env=COCKROACH_WORKSPACE=crdb-checkout --test_arg -rewrite --sandbox_writable_path=crdb-checkout/pkg/ccl/logictestccl --sandbox_writable_path=crdb-checkout/pkg/sql/logictest --sandbox_writable_path=crdb-checkout/pkg/sql/opt/exec/execbuilder --test_filter=TestTenantLogic/3node-tenant/system --test_arg -test.v --test_sharding_strategy=disabled --nocache_test_results --test_output all --build_event_binary_file=/tmp/path

dev test pkg/spanconfig/spanconfigkvsubscriber -f=TestDecodeSpanTargets -v --stream-output
----
bazel query 'kind(.*_test, pkg/spanconfig/spanconfigkvsubscriber:all)'
bazel test //pkg/spanconfig/spanconfigkvsubscriber:spanconfigkvsubscriber_test --test_env=GOTRACEBACK=all --test_filter=TestDecodeSpanTargets --test_arg -test.v --test_sharding_strategy=disabled --test_output streamed --build_event_binary_file=/tmp/path

dev test pkg/sql/schemachanger pkg/sql/schemachanger/scplan -- --test_sharding_strategy=disabled
----
bazel query 'kind(.*_test, pkg/sql/schemachanger:all)'
bazel query 'kind(.*_test, pkg/sql/schemachanger/scplan:all)'
bazel test //pkg/sql/schemachanger:schemachanger_test //pkg/sql/schemachanger/scplan:scplan_test --test_env=GOTRACEBACK=all --test_output errors --test_sharding_strategy disabled --build_event_binary_file=/tmp/path

dev test
----
bazel test //pkg:all_tests --test_env=GOTRACEBACK=all --test_output errors --build_event_binary_file=/tmp/path

dev test pkg/...
----
bazel test //pkg:all_tests --test_env=GOTRACEBACK=all --test_output errors --build_event_binary_file=/tmp/path

dev test pkg/spanconfig/spanconfigstore --stress
----
bazel query 'kind(.*_test, pkg/spanconfig/spanconfigstore:all)'
getenv DEV_I_UNDERSTAND_ABOUT_STRESS
bazel test //pkg/spanconfig/spanconfigstore:spanconfigstore_test --test_env=GOTRACEBACK=all --test_env=COCKROACH_STRESS=true --notest_keep_going --runs_per_test=1000 '--runs_per_test=.*disallowed_imports_test@1' --test_output errors --build_event_binary_file=/tmp/path

dev test pkg/spanconfig/spanconfigstore --stress --count 250
----
bazel query 'kind(.*_test, pkg/spanconfig/spanconfigstore:all)'
getenv DEV_I_UNDERSTAND_ABOUT_STRESS
bazel test //pkg/spanconfig/spanconfigstore:spanconfigstore_test --test_env=GOTRACEBACK=all --test_env=COCKROACH_STRESS=true --notest_keep_going --runs_per_test=250 '--runs_per_test=.*disallowed_imports_test@1' --test_output errors --build_event_binary_file=/tmp/path

dev test pkg/spanconfig/spanconfigstore --count 1
----
bazel query 'kind(.*_test, pkg/spanconfig/spanconfigstore:all)'
bazel test //pkg/spanconfig/spanconfigstore:spanconfigstore_test --test_env=GOTRACEBACK=all --nocache_test_results --test_output errors --build_event_binary_file=/tmp/path
