Hi, I'm trying to run the currently in place testing infrastructure against a pre-built rustc binary, meaning I don't want to build and subsequently test rustc. Is there a way to do this or does it need to implemented?
The current method I've been able to figure out was by manually passing in all the required arguments for compiletest
and passing the rustc argument to the one that I want--but unsure if this works. This also feels like it's vulnerable to any changes that might come along to compiletest.
Let me know if I'm on the right track or if I should think about a possible implementation.