forge-std icon indicating copy to clipboard operation
forge-std copied to clipboard

"ds-test/test.sol" Not Found

Open sarnavoss opened this issue 2 years ago • 2 comments

import {DSTest} from "ds-test/test.sol";

"ds-test/test.sol" :- doesn't exsist

sarnavoss avatar Feb 06 '24 16:02 sarnavoss

Please provide steps to reproduce

mds1 avatar Feb 06 '24 17:02 mds1

The latest release version of Forge has this ds-test dependency.

forge install foundry-rs/forge-std --no-commit

This installs 1.7.6, which depends on ds-test and fails to compile.

kristian1108 avatar Feb 15 '24 19:02 kristian1108

Me too. When i complied "lib/forge-std/src/Test.sol" in remix, And it response me "Error: not found ds-test/test.sol". I hava already placed the test.sol file in the expected directory, however it doesn't work.
And another problem, it shows 'stack too deep' when compiling the file in "src/P256Verifier.sol", and here are the detials.


CompilerError: Stack too deep. Try compiling with --via-ir (cli) or the equivalent viaIR: true (standard JSON) while enabling the optimizer. Otherwise, try removing local variables. --> src/P256Verifier.sol:326:54: | 326 | uint256 comp_M = addmod(mulmod(3, mulmod(x1, x1, p), p), mulmod(a, mulmod(zz1, zz1, p), p), p); //M = 3*(X1)^2 + a*(zz1)^2 | ^^

zhouyong0115 avatar Apr 16 '24 12:04 zhouyong0115

versions 1.8.0 and later of forge-std removed ds-test as a dependency, but earlier versions have it. The stack too deep error is not a foundry issue, but specific to the P256Verifier contract. Closing since everything seems to be working as expected from my testing, but if you are still having issues provide concrete steps to reproduce (e.g. how are you getting forge-std into remix?) and I may be able to help

mds1 avatar Apr 16 '24 23:04 mds1