diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2017-04-21 06:34:12 +0800 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2017-11-30 04:10:18 +0800 |
commit | 73d25c883fddaa961a8276f1e892f935c3f6b2db (patch) | |
tree | 2be7a452a4cf9173d94a63790ca6982a360b49fa | |
parent | 8da245cca3228be3e8d7908f184a327dcaf16b29 (diff) | |
download | dexon-solidity-73d25c883fddaa961a8276f1e892f935c3f6b2db.tar.gz dexon-solidity-73d25c883fddaa961a8276f1e892f935c3f6b2db.tar.zst dexon-solidity-73d25c883fddaa961a8276f1e892f935c3f6b2db.zip |
Specify output selection in tests
-rw-r--r-- | test/libsolidity/StandardCompiler.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/libsolidity/StandardCompiler.cpp b/test/libsolidity/StandardCompiler.cpp index 4504946b..091207e8 100644 --- a/test/libsolidity/StandardCompiler.cpp +++ b/test/libsolidity/StandardCompiler.cpp @@ -179,6 +179,14 @@ BOOST_AUTO_TEST_CASE(basic_compilation) "fileA": { "content": "contract A { }" } + }, + "settings": { + "outputSelection": { + "fileA": { + "A": [ "abi", "devdoc", "userdoc", "evm.bytecode", "evm.assembly", "evm.gasEstimates", "metadata" ], + "": [ "legacyAST" ] + } + } } } )"; |