Skip to content

Commit

Permalink
[GS] Update regression tests
Browse files Browse the repository at this point in the history
  • Loading branch information
grzegorzs committed Apr 24, 2015
1 parent ffec31b commit 97335b6
Show file tree
Hide file tree
Showing 8 changed files with 481 additions and 417 deletions.
6 changes: 6 additions & 0 deletions libraries/cli/pretty.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,12 @@ string pretty_line( int size, char c )

string pretty_shorten( const string& str, size_t max_size )
{
if( FILTER_OUTPUT_FOR_TESTS && str.find( "publish version" ) != string::npos )
{
std::size_t start = str.find( "dryrun" );
if( start != string::npos )
return str.substr( 0, start ) + "<d-ign>" + str.substr( start ) + "</d-ign>";
}
if( str.size() > max_size )
return str.substr( 0, max_size - 3 ) + "...";
return str;
Expand Down
2 changes: 1 addition & 1 deletion tests/api_testing_status.txt
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,6 @@ wallet_market_cover <from_account_name> <quantity> <quantity_symbol> <cover_id>
wallet_multisig_deposit <amount> <symbol> <from_name> <m> <addresses> [strategy]
wallet_multisig_get_balance_id <symbol> <m> <addresses>
wallet_multisig_withdraw_start <amount> <symbol> <from> <to_address> [strategy] [builder_path]
wallet_publish_version <publishing_account_name> [paying_account_name]
wallet_rebroadcast_transaction <transaction_id>
wallet_recover_accounts <accounts_to_recover> [maximum_number_of_attempts]
wallet_recover_titan_deposit_info <transaction_id_prefix> [recipient_account]
Expand Down Expand Up @@ -207,6 +206,7 @@ wallet_publish_feeds <delegate_account> <symbol_to_price_map>
wallet_publish_feeds_multi_experimental <symbol_to_price_map>
wallet_publish_price_feed <delegate_account> <price> <asset_symbol>
wallet_publish_slate <publishing_account_name> [paying_account_name]
wallet_publish_version <publishing_account_name> [paying_account_name]
wallet_release_escrow <pay_fee_with_account_name> <escrow_balance_id> <released_by_account> [amount_to_sender] [amount_to_receiver]
wallet_remove_contact <contact>
wallet_rescan_blockchain [start_block_num] [limit] [scan_in_background]
Expand Down

This file was deleted.

170 changes: 0 additions & 170 deletions tests/regression_tests/vote_delegates_recommended/client0.log

This file was deleted.

Loading

0 comments on commit 97335b6

Please sign in to comment.