Browse Source

bytemark bench: turn off blinking cursor

Fabian 1 year ago
parent
commit
f13c238109
1 changed files with 2 additions and 2 deletions
  1. 2 2
      tests/benchmark/arch-bytemark.js

+ 2 - 2
tests/benchmark/arch-bytemark.js

@@ -42,8 +42,8 @@ emulator.bus.register("emulator-started", function()
     }
 
     setTimeout(() => {
-        const set = exclude_tests.map(name => `echo ${name}=0 >> CMD && `).join("");
-        emulator.serial0_send(`cd nbench && touch CMD && ${set} ./nbench -cCMD\n`);
+        const set = exclude_tests.map(name => `echo ${name}=0 >> CMD`).join(" && ");
+        emulator.serial0_send(`echo 0 > /sys/class/graphics/fbcon/cursor_blink && cd nbench && touch CMD && ${set} && ./nbench -cCMD\n`);
     }, 1000);
 });