Skip to content

Commit a2f768d

Browse files
committed
Remove empty settings.
1 parent 58d21f1 commit a2f768d

File tree

575 files changed

+0
-575
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

575 files changed

+0
-575
lines changed

test/libsolidity/semanticTests/abiEncoderV1/abi_decode_dynamic_array.sol

-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,5 @@ contract C {
44
}
55
}
66

7-
// ====
87
// ----
98
// f(bytes): 0x20, 0xc0, 0x20, 0x4, 0x3, 0x4, 0x5, 0x6 -> 0x20, 0x4, 0x3, 0x4, 0x5, 0x6

test/libsolidity/semanticTests/abiEncoderV1/abi_decode_fixed_arrays.sol

-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,5 @@ contract C {
44
return (a[i], b[j][k]);
55
}
66
}
7-
// ====
87
// ----
98
// f(uint16[3],uint16[2][3],uint256,uint256,uint256): 1, 2, 3, 11, 12, 21, 22, 31, 32, 1, 2, 1 -> 2, 32

test/libsolidity/semanticTests/abiEncoderV1/abi_decode_static_array.sol

-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,5 @@ contract C {
88
}
99
}
1010

11-
// ====
1211
// ----
1312
// f(bytes): 0x20, 0xc0, 0x1, 0x2, 0x3, 0x4, 0x5, 0x6 -> 1, 2, 3, 4, 5, 6

test/libsolidity/semanticTests/abiEncoderV1/abi_decode_static_array_v2.sol

-1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,5 @@ contract C {
1111
}
1212
}
1313

14-
// ====
1514
// ----
1615
// f(bytes): 0x20, 0xc0, 0x1, 0x2, 0x3, 0x4, 0x5, 0x6 -> 1, 2, 3, 4, 5, 6

test/libsolidity/semanticTests/abiEncoderV1/abi_decode_trivial.sol

-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,5 @@ contract C {
44
}
55
}
66

7-
// ====
87
// ----
98
// f(bytes): 0x20, 0x20, 0x21 -> 33

test/libsolidity/semanticTests/abiEncoderV1/abi_decode_v2.sol

-1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,5 @@ contract C {
1818
}
1919
}
2020

21-
// ====
2221
// ----
2322
// f() -> 0x20, 0x8, 0x40, 0x3, 0x9, 0xa, 0xb

test/libsolidity/semanticTests/abiEncoderV1/abi_decode_v2_calldata.sol

-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,5 @@ contract C {
1212
}
1313
}
1414

15-
// ====
1615
// ----
1716
// f(bytes): 0x20, 0xe0, 0x20, 0x21, 0x40, 0x3, 0xa, 0xb, 0xc -> 0x20, 0x21, 0x40, 0x3, 0xa, 0xb, 0xc

test/libsolidity/semanticTests/abiEncoderV1/abi_decode_v2_storage.sol

-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ contract C {
2020
}
2121
}
2222

23-
// ====
2423
// ----
2524
// f() -> 0x20, 0x8, 0x40, 0x3, 0x9, 0xa, 0xb
2625
// gas irOptimized: 203310

test/libsolidity/semanticTests/abiEncoderV1/abi_encode_call.sol

-1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,5 @@ contract C {
2222
}
2323
}
2424

25-
// ====
2625
// ----
2726
// f() -> true

test/libsolidity/semanticTests/abiEncoderV1/byte_arrays.sol

-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ contract C {
99
return (a, b.length, b[3], c);
1010
}
1111
}
12-
// ====
1312
// ----
1413
// f(uint256,bytes,uint256): 6, 0x60, 9, 7, "abcdefg" -> 6, 7, "d", 9
1514
// f_external(uint256,bytes,uint256): 6, 0x60, 9, 7, "abcdefg" -> 6, 7, "d", 9

test/libsolidity/semanticTests/abiEncoderV1/dynamic_arrays.sol

-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,5 @@ contract C {
44
return (b.length, b[a], c);
55
}
66
}
7-
// ====
87
// ----
98
// f(uint256,uint16[],uint256): 6, 0x60, 9, 7, 11, 12, 13, 14, 15, 16, 17 -> 7, 17, 9

test/libsolidity/semanticTests/abiEncoderV1/dynamic_memory_copy.sol

-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ contract C {
1919
}
2020
}
2121

22-
// ====
2322
// ----
2423
// test(bytes): 0x20, 0x80, 0x40, 0x60, 0, 0 -> false, false
2524
// test(bytes): 0x20, 0xC0, 0x40, 0x80, 1, 0x42, 1, 0x42 -> false, false

test/libsolidity/semanticTests/abiEncoderV1/memory_params_in_external_function.sol

-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,5 @@ contract C {
1212
return this.f("abc", "def", x);
1313
}
1414
}
15-
// ====
1615
// ----
1716
// g() -> 3, 0x6200000000000000000000000000000000000000000000000000000000000000, 3, 0x6600000000000000000000000000000000000000000000000000000000000000, 4, 7

test/libsolidity/semanticTests/abiEncoderV1/struct/struct_storage_ptr.sol

-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ contract C {
2121
return (r[2], s.x, a, b, c, d);
2222
}
2323
}
24-
// ====
2524
// ----
2625
// library: L
2726
// f() -> 8, 7, 1, 2, 7, 12

test/libsolidity/semanticTests/abiEncoderV2/abi_encode_v2.sol

-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ contract C {
4545
}
4646
}
4747

48-
// ====
4948
// ----
5049
// f0() -> 0x20, 0x0
5150
// f1() -> 0x20, 0x40, 0x1, 0x2

test/libsolidity/semanticTests/abiEncoderV2/abi_encode_v2_in_function_inherited_in_v1_contract.sol

-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ contract C is B {
2828
return foo(new A());
2929
}
3030
}
31-
// ====
3231
// ----
3332
// test() -> 77
3433
// gas irOptimized: 119711

test/libsolidity/semanticTests/abiEncoderV2/abi_encode_v2_in_modifier_used_in_v1_contract.sol

-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ contract C is B {
3636
return (x, y);
3737
}
3838
}
39-
// ====
4039
// ----
4140
// test() -> 5, 10
4241
// gas irOptimized: 87337

test/libsolidity/semanticTests/abiEncoderV2/byte_arrays.sol

-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ contract C {
1111
return (a, b.length, b[3], c);
1212
}
1313
}
14-
// ====
1514
// ----
1615
// f(uint256,bytes,uint256): 6, 0x60, 9, 7, "abcdefg" -> 6, 7, "d", 9
1716
// f_external(uint256,bytes,uint256): 6, 0x60, 9, 7, "abcdefg" -> 6, 7, "d", 9

test/libsolidity/semanticTests/abiEncoderV2/calldata_array_dynamic_static_short_reencode.sol

-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ contract C {
77
return this.f(x);
88
}
99
}
10-
// ====
1110
// ----
1211
// g(uint256[][2][]): 0x20, 0x01, 0x20, 0x40, 0x60, 0x00, 0x00 -> 42
1312
// g(uint256[][2][]): 0x20, 0x01, 0x20, 0x00, 0x00 -> 42

test/libsolidity/semanticTests/abiEncoderV2/calldata_array_function_types.sol

-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ contract C {
2525
return reenc ? this.f_reenc(a) : this.f(a);
2626
}
2727
}
28-
// ====
2928
// ----
3029
// g(bool): false -> 23, 37, 71
3130
// g(bool): true -> 23, 37, 71

test/libsolidity/semanticTests/abiEncoderV2/calldata_array_short_no_revert_string.sol

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
contract C {
22
function f(uint[] calldata) public {}
33
}
4-
// ====
54
// ----
65
// f(uint256[]): 0x20, 0 ->
76
// f(uint256[]): 0x20, 1 -> FAILURE

test/libsolidity/semanticTests/abiEncoderV2/calldata_nested_array_static_reencode.sol

-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ contract C {
1111
abi.encode(a);
1212
}
1313
}
14-
// ====
1514
// ----
1615
// f(uint256[3][]): 0x20, 1, 0x01 -> FAILURE
1716
// f(uint256[3][]): 0x20, 1, 0x01, 0x02 -> FAILURE

test/libsolidity/semanticTests/abiEncoderV2/calldata_struct_member_offset.sol

-1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,5 @@ contract C {
1919
return (b.b, this.g(b));
2020
}
2121
}
22-
// ====
2322
// ----
2423
// f() -> 11, 11

test/libsolidity/semanticTests/abiEncoderV2/cleanup/address.sol

-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ contract C {
1010
return this.g(x);
1111
}
1212
}
13-
// ====
1413
// ----
1514
// f(uint256): 0 -> 0
1615
// g(address): 0 -> 0 # test validation as well as sanity check #

test/libsolidity/semanticTests/abiEncoderV2/cleanup/bool.sol

-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ contract C {
1010
return this.gggg(x);
1111
}
1212
}
13-
// ====
1413
// ----
1514
// f(uint256): 0 -> false
1615
// gggg(bool): 0 -> false # test validation as well as sanity check #

test/libsolidity/semanticTests/abiEncoderV2/cleanup/bytesx.sol

-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ contract C {
4242
return this.g16(x);
4343
}
4444
}
45-
// ====
4645
// ----
4746
// f1(bytes32): left(0) -> left(0)
4847
// gg1(bytes1): left(0) -> left(0) # test validation as well as sanity check #

test/libsolidity/semanticTests/abiEncoderV2/cleanup/function.sol

-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ contract C {
1616
return (this.ggg(s.f), this.h(s));
1717
}
1818
}
19-
// ====
2019
// ----
2120
// ffff(uint256): 0 -> 0, 0
2221
// ggg(function): 0 -> 0

test/libsolidity/semanticTests/abiEncoderV2/cleanup/intx.sol

-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ contract C {
4242
return this.g128(x);
4343
}
4444
}
45-
// ====
4645
// ----
4746
// f8(int256): 0 -> 0
4847
// ggg8(int8): 0 -> 0 # test validation as well as sanity check #

test/libsolidity/semanticTests/abiEncoderV2/cleanup/uintx.sol

-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ contract C {
4242
return this.g128(x);
4343
}
4444
}
45-
// ====
4645
// ----
4746
// f8(uint256): 0 -> 0
4847
// ggg8(uint8): 0 -> 0 # test validation as well as sanity check #

test/libsolidity/semanticTests/abiEncoderV2/dynamic_arrays.sol

-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,5 @@ contract C {
66
return (b.length, b[a], c);
77
}
88
}
9-
// ====
109
// ----
1110
// f(uint256,uint16[],uint256): 6, 0x60, 9, 7, 11, 12, 13, 14, 15, 16, 17 -> 7, 17, 9

test/libsolidity/semanticTests/abiEncoderV2/dynamic_nested_arrays.sol

-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ contract C {
2525
return this.f(12, b, c, 13);
2626
}
2727
}
28-
// ====
2928
// ----
3029
// test() -> 12, 3, 4, 0x66, 5, 0x85, 13
3130
// f(uint256,uint16[][],uint256[2][][3],uint256): 12, 0x80, 0x220, 13, 3, 0x60, 0xC0, 0x160, 2, 85, 86, 4, 101, 102, 103, 104, 0, 0x60, 0xC0, 0x220, 1, 0, 117, 5, 0, 0, 0, 133, 0, 0, 0, 0, 0, 0, 0 -> 12, 3, 4, 0x66, 5, 0x85, 13

test/libsolidity/semanticTests/abiEncoderV2/memory_params_in_external_function.sol

-1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,5 @@ contract C {
1414
return this.f("abc", "def", x);
1515
}
1616
}
17-
// ====
1817
// ----
1918
// g() -> 3, 0x6200000000000000000000000000000000000000000000000000000000000000, 3, 0x6600000000000000000000000000000000000000000000000000000000000000, 4, 7

test/libsolidity/semanticTests/abiEncoderV2/struct/mediocre2_struct.sol

-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,5 @@ contract C {
88
r3 = b;
99
}
1010
}
11-
// ====
1211
// ----
1312
// f(uint256,(address,uint256[])[2],uint256): 7, 0x60, 8, 0x40, 0xE0, 0x0, 0x40, 2, 0x11, 0x12, 0x99, 0x40, 4, 0x31, 0x32, 0x34, 0x35 -> 7, 0x0, 8

test/libsolidity/semanticTests/abiEncoderV2/struct/mediocre_struct.sol

-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,5 @@ contract C {
88
r3 = b;
99
}
1010
}
11-
// ====
1211
// ----
1312
// f(uint256,(address)[2],uint256): 7, 0, 0, 8 -> 7, 0, 8

test/libsolidity/semanticTests/abiEncoderV2/struct/struct_function.sol

-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,5 @@ contract C {
1010
}
1111
function g() public returns (uint) { return 7; }
1212
}
13-
// ====
1413
// ----
1514
// test() -> 7, 3

test/libsolidity/semanticTests/abiencodedecode/abi_decode_calldata.sol

-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,5 @@ contract C {
88
}
99
}
1010

11-
// ====
1211
// ----
1312
// f(bytes): 0x20, 0x80, 0x21, 0x40, 0x7, "abcdefg" -> 0x21, 0x40, 0x7, "abcdefg"

test/libsolidity/semanticTests/abiencodedecode/abi_decode_simple.sol

-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,5 @@ contract C {
44
}
55
}
66

7-
// ====
87
// ----
98
// f(bytes): 0x20, 0x80, 0x21, 0x40, 0x7, "abcdefg" -> 0x21, 0x40, 0x7, "abcdefg"

test/libsolidity/semanticTests/abiencodedecode/abi_decode_simple_storage.sol

-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ contract C {
77
}
88
}
99

10-
// ====
1110
// ----
1211
// f(bytes): 0x20, 0x80, 0x21, 0x40, 0x7, "abcdefg" -> 0x21, 0x40, 0x7, "abcdefg"
1312
// gas irOptimized: 135918

test/libsolidity/semanticTests/abiencodedecode/abi_encode_call.sol

-1
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,5 @@ contract C {
4545
}
4646
}
4747

48-
// ====
4948
// ----
5049
// callExternal() -> true

test/libsolidity/semanticTests/abiencodedecode/abi_encode_call_is_consistent.sol

-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@ contract C {
4949
assert(keccak256(fReturnedFunctionPointer()) == keccak256(fSignatureFromLiteral()));
5050
}
5151
}
52-
// ====
5352
// ----
5453
// assertConsistentSelectors() ->
5554
// fSignatureFromLiteral() -> 0x20, 0x84, 23450202028776381066253055403048136312616272755117076566855971503345107992576, 26959946667150639794667015087019630673637144422540572481103610249216, 1725436586697640946858688965569256363112777243042596638790631055949824, 86060793054017993816230018372407419485142305772921726565498526629888, 0

test/libsolidity/semanticTests/abiencodedecode/abi_encode_call_memory.sol

-1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,5 @@ contract C {
2222
}
2323
}
2424

25-
// ====
2625
// ----
2726
// test() -> 0xa7a0d53700000000000000000000000000000000000000000000000000000000

test/libsolidity/semanticTests/abiencodedecode/abi_encode_call_special_args.sol

-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ contract C {
3636
assert(keccak256(fSignatureFromLiteralUint()) == keccak256(fPointerUint()));
3737
}
3838
}
39-
// ====
4039
// ----
4140
// assertConsistentSelectors() ->
4241
// fSignatureFromLiteralNoArgs() -> 0x20, 0x04, 12200448252684243758085936796735499259670113115893304444050964496075123064832

test/libsolidity/semanticTests/abiencodedecode/abi_encode_with_signature.sol

-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ contract C {
2525
ar = new uint[](2);
2626
}
2727
}
28-
// ====
2928
// ----
3029
// f0() -> 0x20, 4, -34435155370463444793260793355178157075203752403645521721995013737368954863616
3130
// f1() -> 0x20, 0x64, -34435155370463444793260793355178157075203752403645521721995013737368954863616, 862718293348820473429344482784628181556388621521298319395315527974912, 91135606241822717681769169345594720818313984248279388438121731325952, 0

test/libsolidity/semanticTests/abiencodedecode/abi_encode_with_signaturev2.sol

-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ contract C {
3333
return abi.encodeWithSignature(s.b, type(uint).max, s, uint(3));
3434
}
3535
}
36-
// ====
3736
// ----
3837
// f0() -> 0x20, 4, -34435155370463444793260793355178157075203752403645521721995013737368954863616
3938
// f1() -> 0x20, 0x64, -34435155370463444793260793355178157075203752403645521721995013737368954863616, 862718293348820473429344482784628181556388621521298319395315527974912, 91135606241822717681769169345594720818313984248279388438121731325952, 0

test/libsolidity/semanticTests/abiencodedecode/contract_array.sol

-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ contract C {
1010
return abi.encode(c);
1111
}
1212
}
13-
// ====
1413
// ----
1514
// f(bytes): 0x20, 0xA0, 0x20, 3, 0x01, 0x02, 0x03 -> 0x20, 3, 0x01, 0x02, 0x03
1615
// g() -> 0x20, 0xa0, 0x20, 3, 0x42, 0x21, 0x23

test/libsolidity/semanticTests/abiencodedecode/contract_array_v2.sol

-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ contract C {
1111
return abi.encode(c);
1212
}
1313
}
14-
// ====
1514
// ----
1615
// f(bytes): 0x20, 0xA0, 0x20, 3, 0x01, 0x02, 0x03 -> 0x20, 3, 0x01, 0x02, 0x03
1716
// f(bytes): 0x20, 0x60, 0x20, 1, 0x0102030405060708090a0b0c0d0e0f1011121314 -> 0x20, 1, 0x0102030405060708090a0b0c0d0e0f1011121314

test/libsolidity/semanticTests/arithmetics/check_var_init.sol

-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ contract D {
1313
return (new C{value: 11}()).x();
1414
}
1515
}
16-
// ====
1716
// ----
1817
// f() -> FAILURE, hex"4e487b71", 0x11
1918
// g(), 100 wei -> 1

test/libsolidity/semanticTests/arithmetics/checked_add_v2.sol

-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ contract C {
44
return a + b;
55
}
66
}
7-
// ====
87
// ----
98
// f(uint16,uint16): 65534, 0 -> 0xfffe
109
// f(uint16,uint16): 65536, 0 -> FAILURE

test/libsolidity/semanticTests/arithmetics/exp_associativity.sol

-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ contract C {
3030
}
3131
}
3232

33-
// ====
3433
// ----
3534
// test_hardcode1(uint256,uint256,uint256): 2, 3, 4 -> 2417851639229258349412352
3635
// test_hardcode2(uint256,uint256,uint256,uint256): 3, 2, 2, 2 -> 43046721

test/libsolidity/semanticTests/array/arrays_complex_from_and_to_storage.sol

-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ contract Test {
1010
return data;
1111
}
1212
}
13-
// ====
1413
// ----
1514
// set(uint24[3][]): 0x20, 0x06, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x10, 0x11, 0x12 -> 0x06
1615
// gas irOptimized: 189800

test/libsolidity/semanticTests/array/byte_array_storage_layout.sol

-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ contract c {
3838
}
3939
}
4040
}
41-
// ====
4241
// ----
4342
// storageEmpty -> 1
4443
// test_short() -> 1780731860627700044960722568376587075150542249149356309979516913770823710

test/libsolidity/semanticTests/array/byte_array_transitional_2.sol

-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ contract c {
1515
return 0;
1616
}
1717
}
18-
// ====
1918
// ----
2019
// test() -> 0
2120
// gas irOptimized: 157949

0 commit comments

Comments
 (0)