We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Am I doing something wrong?
e.g.
My.sol:
My.sol
contract My { function myFunc(address[] addrs) returns (uint) { return 0; } }
My.t.sol:
My.t.sol
import "ds-test/test.sol"; import "./My.sol"; contract MyTest is DSTest { My contractInstance; function setUp() { contractInstance = new My(); } function testFunc() { address[] addrs; addrs.push(this); contractInstance.myFunc(addrs); // hangs here } }
$ solc --version solc, the solidity compiler commandline interface Version: 0.4.17+commit.bdeb9e52.Linux.g++ $ dapp --version dapp 0.5.6
The text was updated successfully, but these errors were encountered:
@travs this is fixed now right?
Sorry, something went wrong.
@rainbreak This still stalls for me it seems :S Last output is
Running 1 tests for src/My.t.sol:MyTest # then it hangs forever
$ dapp --version dapp 0.7.4 $ solc --version solc, the solidity compiler commandline interface Version: 0.4.17+commit.bdeb9e52.Linux.g++
No branches or pull requests
Am I doing something wrong?
e.g.
My.sol
:My.t.sol
:The text was updated successfully, but these errors were encountered: