Remove empty settings.

This commit is contained in:
Daniel Kirchner
2022-05-19 20:23:28 +02:00
parent 58d21f1e9d
commit a2f768d29a
575 changed files with 0 additions and 575 deletions
@@ -3,7 +3,6 @@ contract AccountBuiltinTest {
result = msg.sender;
}
}
// ====
// ----
// constructor()
// account: 0 -> 0x1212121212121212121212121212120000000012
@@ -14,7 +14,6 @@ contract ClientReceipt {
return other.getAddress();
}
}
// ====
// ----
// constructor(), 2000 wei ->
// gas irOptimized: 183544
@@ -1,7 +1,6 @@
contract ClientReceipt {
constructor() payable {}
}
// ====
// ----
// constructor(), 1000 wei ->
// balance -> 1000
@@ -1,7 +1,6 @@
contract ClientReceipt {
constructor() payable {}
}
// ====
// ----
// constructor(), 1 ether ->
// balance -> 1000000000000000000
@@ -1,6 +1,5 @@
contract ClientReceipt {
}
// ====
// ----
// balance -> 0
// balance: 0x0000000000000000000000000000000000000000 -> 0
@@ -1,5 +1,4 @@
contract SmokeTest {
}
// ====
// ----
// isoltest_builtin_test -> 0x1234
@@ -1,6 +1,5 @@
contract SmokeTest {
}
// ====
// ----
// isoltest_side_effects_test -> 0
// isoltest_side_effects_test: 0x1234 -> 0x1234
@@ -6,6 +6,5 @@ contract C {
// NOTE: The test is here to illustrate the problem with formatting control chars in strings in
// test expectations but unfortunately it can only be triggered manually. It does not test anything
// unless you introduce a difference in expectations to force isoltest to reformat them.
// ====
// ----
// f(string): 0x20, 16, "\xf0\x9f\x98\x83\xf0\x9f\x98\x83\xf0\x9f\x98\x83\xf0\x9f\x98\x83" -> 0x20, 16, "\xf0\x9f\x98\x83\xf0\x9f\x98\x83\xf0\x9f\x98\x83\xf0\x9f\x98\x83" # Input/Output: "😃😃😃😃" #
@@ -1,5 +1,4 @@
contract StorageEmpty {
}
// ====
// ----
// storageEmpty -> 1
@@ -2,7 +2,6 @@ contract StorageNotEmpty {
uint256 x;
function set(uint256 _a) public { x = _a; }
}
// ====
// ----
// storageEmpty -> 1
// set(uint256): 1 ->