Brian Silverman | 12b3fc5 | 2015-10-11 19:38:33 -0400 | [diff] [blame] | 1 | # TODO(Brian): Figure out how we're going to distribute Bazel so everybody |
| 2 | # doesn't need to hand-edit this file or use a .bazelrc... |
| 3 | build --package_path %workspace%:/home/brian/bazel/base_workspace |
| 4 | fetch --package_path %workspace%:/home/brian/bazel/base_workspace |
| 5 | query --package_path %workspace%:/home/brian/bazel/base_workspace |
| 6 | |
| 7 | # Complain about missing headers in the dependencies of C++ code instead of just |
| 8 | # working with it. |
| 9 | # TODO(Brian): Fix Bazel so this actually does something again... |
| 10 | build --hdrs_check=strict |
| 11 | |
| 12 | # Show paths to a few more than just 1 target. |
| 13 | build --show_result 15 |
| 14 | # Don't just say "something has the wrong timeout"... |
| 15 | test --test_verbose_timeout_warnings |
| 16 | # Dump the output of the failing test to stdout. |
| 17 | test --test_output=errors |