File tree Expand file tree Collapse file tree 3 files changed +8
-947
lines changed
Expand file tree Collapse file tree 3 files changed +8
-947
lines changed Original file line number Diff line number Diff line change 1919from gui .screens .settings import HostSettings
2020from gui .screens .mnemonic import MnemonicPrompt
2121from stresstest import StressTest
22- from stresstest_modular import ModularStressTestScreen as StressTestScreen
2322
2423# small helper functions
2524from helpers import gen_mnemonic , fix_mnemonic
@@ -564,14 +563,14 @@ async def stress_test_menu(self):
564563 """Show stress test interface"""
565564 try :
566565 print ("=== STARTING STRESS TEST MENU ===" )
567- # Create stress test instance with RAM path
568- rampath = "/ramdisk" # Use the same RAM path as main
569- stress_test = StressTest ( rampath )
570-
571- # Create and show stress test screen
572- screen = StressTestScreen ( stress_test )
573- await self . gui . load_screen ( screen )
574- await screen . result ()
566+ # Create stress test instance
567+ stress_test = StressTest ()
568+
569+ # Initialize components
570+ await stress_test . initialize ()
571+
572+ # Run continuous test directly
573+ await stress_test . run_continuous_test ()
575574
576575 except Exception as e :
577576 print ("=== STRESS TEST MENU ERROR ===" )
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments