Update bazel command to bazel run instead of bazel test.

`bazel test` puts the error logs into a file instead of on the terminal,
whereas `bazel run` will show all the logs on the terminal, which is
nicer when debugging locally.
This commit is contained in:
Advait Jain 2021-02-17 14:50:32 -08:00
parent 72d0c2ad78
commit f6695e73fc

View File

@ -236,9 +236,9 @@ Below are some tips that might be useful and improve the development experience.
want to test:
```
CC=clang bazel test ---config=asan tensorflow/lite/micro:micro_interpreter_test
CC=clang bazel test ---config=msan tensorflow/lite/micro:micro_interpreter_test
CC=clang bazel test ---config=ubsan tensorflow/lite/micro:micro_interpreter_test
CC=clang bazel run --config=asan tensorflow/lite/micro:micro_interpreter_test
CC=clang bazel run --config=msan tensorflow/lite/micro:micro_interpreter_test
CC=clang bazel run --config=ubsan tensorflow/lite/micro:micro_interpreter_test
```
## During the PR review