You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, rust_test supports data, which is used at build time and also populates runfiles, and compile_data, which is used at build time but excluded from runfiles.
I want to be able to modify test input files without recompiling. These files are used exclusively at runtime, not build time, so changing them should not invalidate the test binary (but should invalidate the test results). I am currently using data, and this is causing unwanted compiles. What I want is the opposite of compile_data, e.g. runtime_data.
The text was updated successfully, but these errors were encountered:
Currently, rust_test supports data, which is used at build time and also populates runfiles, and compile_data, which is used at build time but excluded from runfiles.
I want to be able to modify test input files without recompiling. These files are used exclusively at runtime, not build time, so changing them should not invalidate the test binary (but should invalidate the test results). I am currently using data, and this is causing unwanted compiles. What I want is the opposite of compile_data, e.g. runtime_data.
The text was updated successfully, but these errors were encountered: