zjturner
zjturner
Currently it does not appear that there is any way to simulate failure on a step, or Good/Excellent locations. My use case is that I want to Put in my...
We have several different options to only run specific tests, but we have no way to _uniquely identify_ a test. When specifying a test case with `--test-case=Foo`, it will run...
WinDbg has the `.childdbg` option which will automatically cause the debugger to attach to child processes when the parent calls `CreateProcess`. GDB has a similar option, where you can set...
When configuring the `launch.json` file, it expects `args` to be an array of strings that are passed to the process, where each item in the array is one argument. This...
I don't see any toolchain support for MSVC. The documentation is light in this area, so it's not even clear what the low level anatomy of a toolchain file even...
I tried to use `java_binary()`. I was pretty quickly hit with an error about one of my provider fields (`JavaToolchainInfo.fat_jar`) being unset, so I looked into what it might be...
We have a unique python setup. We distribute it hermetically via an internal tool (similar to dotslash), then we set up our `python` toolchain to return a `PythonToolchainInfo` whose `interpreter`...
When using the `show_headers` dep file parsing mode (generally used with clang), a script `show_headers_to_dep_file.py` is invoked behind the scenes in order to convert the output of clang's `--show-headers` argument...
The python rules have been really great so far, surprisingly good in fact. One thing I find missing is a way to load a `requirements.txt` and automatically create deps for...
I have a cxx_library which contains a couple of objective c++ files. Because of this, they carry with them a transitive link dependency on an apple framework. I've tried something...