mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Quadratic complexity test
This commit is contained in:
parent
c1d415fba1
commit
87912744c7
@ -76,14 +76,6 @@
|
||||
"//" : " if (!testCryptographicFunctions()) ",
|
||||
"//" : " res = hash(int(res) + int(0x00000f0000000000000000000000000000000000000000000000000000000000)); ",
|
||||
"//" : " ",
|
||||
"//" : " //Tested 27.01.2015 ",
|
||||
"//" : " //should run out of gas ",
|
||||
"//" : " //if (!testInfiniteLoop()) ",
|
||||
"//" : " // res = hash(int(res) + int(0x000f000000000000000000000000000000000000000000000000000000000000)); ",
|
||||
"//" : " // ",
|
||||
"//" : " //should run out of gas ",
|
||||
"//" : " //if (!testRecursiveMethods()) ",
|
||||
"//" : " // res = hash(int(res) + int(0x0000000000000000000000000000000000000000000000000000000000000000)); ",
|
||||
"//" : " } ",
|
||||
"//" : " ",
|
||||
"//" : " function testCryptographicFunctions() returns (bool res) ",
|
||||
@ -155,25 +147,6 @@
|
||||
"//" : " ",
|
||||
"//" : " } ",
|
||||
"//" : " ",
|
||||
"//" : " function testInfiniteLoop() returns (bool res) ",
|
||||
"//" : " { ",
|
||||
"//" : " res = false; ",
|
||||
"//" : " while(true){} ",
|
||||
"//" : " return true; ",
|
||||
"//" : " } ",
|
||||
"//" : " ",
|
||||
"//" : " function testRecursiveMethods() returns (bool res) ",
|
||||
"//" : " { ",
|
||||
"//" : " res = false; ",
|
||||
"//" : " testRecursiveMethods2(); ",
|
||||
"//" : " return true; ",
|
||||
"//" : " } ",
|
||||
"//" : " function testRecursiveMethods2() ",
|
||||
"//" : " { ",
|
||||
"//" : " testRecursiveMethods(); ",
|
||||
"//" : "} ",
|
||||
"//" : " ",
|
||||
"//" : " ",
|
||||
"//" : " function testContractSuicide() returns (bool res) ",
|
||||
"//" : " { ",
|
||||
"//" : " TestContract a = new TestContract(); ",
|
||||
@ -219,7 +192,6 @@
|
||||
"//" : " } ",
|
||||
"//" : " } ",
|
||||
"//" : " ",
|
||||
"//" : " ",
|
||||
"//" : " if (i == 0) ",
|
||||
"//" : " return true; ",
|
||||
"//" : " ",
|
||||
@ -349,7 +321,7 @@
|
||||
{
|
||||
"//" : "testRecursiveMethods()",
|
||||
"data" : "0x981a3165",
|
||||
"gasLimit" : "7000",
|
||||
"gasLimit" : "2000",
|
||||
"gasPrice" : "1",
|
||||
"nonce" : "0",
|
||||
"secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8",
|
||||
@ -476,7 +448,7 @@
|
||||
}
|
||||
},
|
||||
|
||||
"AmbigiousMethod" : {
|
||||
"AmbiguousMethod" : {
|
||||
"env" : {
|
||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
|
||||
"currentDifficulty" : "45678256",
|
||||
@ -489,6 +461,23 @@
|
||||
{
|
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||
"balance" : "100000",
|
||||
"//" : "contract contract1 ",
|
||||
"//" : "{ ",
|
||||
"//" : " uint value; ",
|
||||
"//" : " function run() ",
|
||||
"//" : " { ",
|
||||
"//" : " value = 225; ",
|
||||
"//" : " } ",
|
||||
"//" : "} ",
|
||||
"//" : " ",
|
||||
"//" : "contract contract2 ",
|
||||
"//" : "{ ",
|
||||
"//" : " uint value2; ",
|
||||
"//" : " function run() ",
|
||||
"//" : " { ",
|
||||
"//" : " value2 = 335; ",
|
||||
"//" : " } ",
|
||||
"//" : "} ",
|
||||
"code" : "0x60003560e060020a90048063c040622614601557005b601b6021565b60006000f35b61014f60008190555056",
|
||||
"nonce" : "0",
|
||||
"storage" : {
|
||||
@ -506,5 +495,61 @@
|
||||
"to" : "a94f5374fce5edbc8e2a8697c15331677e6ebf0b",
|
||||
"value" : "1"
|
||||
}
|
||||
},
|
||||
|
||||
"QuadraticComplexity" : {
|
||||
"env" : {
|
||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
|
||||
"currentDifficulty" : "45678256",
|
||||
"currentGasLimit" : "100000000",
|
||||
"currentNumber" : "0",
|
||||
"currentTimestamp" : 1,
|
||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
||||
},
|
||||
"pre" :
|
||||
{
|
||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||
"balance" : "10000000",
|
||||
"//" : "contract caller ",
|
||||
"//" : "{ ",
|
||||
"//" : " int value; ",
|
||||
"//" : " function run(int count) ",
|
||||
"//" : " { ",
|
||||
"//" : " value = count; ",
|
||||
"//" : " address a = 0xb94f5374fce5edbc8e2a8697c15331677e6ebf0b; ",
|
||||
"//" : " while(count > 0) ",
|
||||
"//" : " { ",
|
||||
"//" : " a.call('just', 'call'); ",
|
||||
"//" : " count = count - 1; ",
|
||||
"//" : " } ",
|
||||
"//" : " } ",
|
||||
"//" : "} ",
|
||||
"code" : "0x60003560e060020a9004806361a4770614601557005b601e6004356024565b60006000f35b60008160008190555073b94f5374fce5edbc8e2a8697c15331677e6ebf0b90505b600082131560bf5780600160a060020a03166000600060007f6a7573740000000000000000000000000000000000000000000000000000000081526004017f63616c6c000000000000000000000000000000000000000000000000000000008152602001600060008560155a03f150506001820391506045565b505056",
|
||||
"nonce" : "0",
|
||||
"storage" : {
|
||||
}
|
||||
},
|
||||
|
||||
"b94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||
"balance" : "100000",
|
||||
"code" : "{ (CALLDATACOPY 0 0 32) (SSTORE 0 (MLOAD 0)) }",
|
||||
"code" : "{ (CALLDATACOPY 0 0 32) }",
|
||||
"nonce" : "0",
|
||||
"storage" : {
|
||||
}
|
||||
}
|
||||
},
|
||||
"transaction" :
|
||||
{
|
||||
"//" : "run(int256)",
|
||||
"data" : "0x61a47706000000000000000000000000000000000000000000000000000000000000c350",
|
||||
"gasLimit" : "904+68*x+e",
|
||||
"gasLimit" : "3500000",
|
||||
"gasPrice" : "1",
|
||||
"nonce" : "0",
|
||||
"secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8",
|
||||
"to" : "a94f5374fce5edbc8e2a8697c15331677e6ebf0b",
|
||||
"value" : "1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user