aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2018-09-25 16:14:44 +0800
committerGitHub <noreply@github.com>2018-09-25 16:14:44 +0800
commit1b8334e58bd75dae3cc113431e36f9af972f3b1d (patch)
treea13a30e8c4de9d3287bff3450c809024a3393d7c /test
parent3eb5ecdf585426cb6390bffa881b448f50a655f9 (diff)
parent839b01f77e02e36f3008634a8ebd65eb63ce4df0 (diff)
downloaddexon-solidity-1b8334e58bd75dae3cc113431e36f9af972f3b1d.tar.gz
dexon-solidity-1b8334e58bd75dae3cc113431e36f9af972f3b1d.tar.zst
dexon-solidity-1b8334e58bd75dae3cc113431e36f9af972f3b1d.zip
Merge pull request #5034 from liangdzou/fix_test_format_issue
fix format issue for test files to enable the format checker in PR #5027
Diffstat (limited to 'test')
-rw-r--r--test/liblll/Compiler.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/test/liblll/Compiler.cpp b/test/liblll/Compiler.cpp
index 39f5e620..be798dc8 100644
--- a/test/liblll/Compiler.cpp
+++ b/test/liblll/Compiler.cpp
@@ -356,7 +356,8 @@ BOOST_AUTO_TEST_CASE(valid_opcodes_functional)
"{ (SELFDESTRUCT 0) }"
};
- for (size_t i = 0; i < opcodes_bytecode.size(); i++) {
+ for (size_t i = 0; i < opcodes_bytecode.size(); i++)
+ {
vector<string> errors;
bytes code = lll::compileLLL(opcodes_lll[i], dev::test::Options::get().evmVersion(), false, &errors);
@@ -644,7 +645,8 @@ BOOST_AUTO_TEST_CASE(valid_opcodes_asm)
"{ (asm SELFDESTRUCT) }"
};
- for (size_t i = 0; i < opcodes_bytecode.size(); i++) {
+ for (size_t i = 0; i < opcodes_bytecode.size(); i++)
+ {
vector<string> errors;
bytes code = lll::compileLLL(opcodes_lll[i], dev::test::Options::get().evmVersion(), false, &errors);