Open
Description
Describe the bug
Running make test-extensive_hints
fails because some CASM files used for tests are not found. For example:
error: couldn't read `vm/src/tests/../../../cairo_programs/cairo-1-contracts/fib.casm`: No such file or directory (os error 2)
--> vm/src/tests/cairo_1_run_from_entrypoint_tests.rs:647:24
|
647 | let program_data = include_bytes!("../../../cairo_programs/cairo-1-contracts/fib.casm");
|
To Reproduce
- Clean and install deps:
make clean
make deps
Or, if you are on MacOS:
make clean
make deps-macos
- Run
make test-extensive_hints
.
Expected behavior
All tests included in the extensive hints make command should run successfully.
What version/commit are you on?
4f02f5aab30f9062c2db1f5addbf28d34843168e
Additional context
Running make test
before make test-extensive_hints
solves this. These commands should be independent from each other.