Skip to content

Commit

Permalink
functional_tests: silence the cpu power test program
Browse files Browse the repository at this point in the history
it's very spammy and drowns the test output
  • Loading branch information
moneromooo-monero committed Jul 21, 2022
1 parent b6a029f commit ac6db92
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions tests/functional_tests/functional_tests_rpc.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,8 @@
os.environ['MAKE_TEST_SIGNATURE'] = FUNCTIONAL_TESTS_DIRECTORY + '/make_test_signature'
os.environ['SEEDHASH_EPOCH_BLOCKS'] = "8"
os.environ['SEEDHASH_EPOCH_LAG'] = "4"
if not 'MINING_SILENT' in os.environ:
os.environ['MINING_SILENT'] = "1"

for i in range(len(command_lines)):
#print('Running: ' + str(command_lines[i]))
Expand Down
4 changes: 2 additions & 2 deletions tests/functional_tests/mining.py
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ def get_available_ram(self):
available_ram = util_resources.available_ram_gb()
threshold_ram = 3
self.print_mining_info("Available RAM = " + str(round(available_ram, 1)) + " GB")
if available_ram < threshold_ram:
if available_ram < threshold_ram and not self.is_mining_silent():
print("Warning! Available RAM =", round(available_ram, 1),
"GB is less than the reasonable threshold =", threshold_ram,
". The RX init might exceed the calculated timeout.")
Expand Down Expand Up @@ -255,7 +255,7 @@ def submitblock(self):
assert res.hash == block_hash

def is_mining_silent(self):
return 'MINING_SILENT' in os.environ
return 'MINING_SILENT' in os.environ and os.environ['MINING_SILENT'] != "0"

def print_mining_info(self, msg):
if self.is_mining_silent():
Expand Down

0 comments on commit ac6db92

Please sign in to comment.