From c643c9abbdeb3407fda79c9fa271b4b06aced62c Mon Sep 17 00:00:00 2001 From: Fabian Date: Thu, 17 Feb 2022 17:56:00 +0100 Subject: [PATCH] minor --- tests/benchmark/arch-bytemark.js | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/tests/benchmark/arch-bytemark.js b/tests/benchmark/arch-bytemark.js index 946a3444..38f1dae5 100755 --- a/tests/benchmark/arch-bytemark.js +++ b/tests/benchmark/arch-bytemark.js @@ -3,8 +3,7 @@ const BENCH_COLLECT_STATS = +process.env.BENCH_COLLECT_STATS; -const V86 = require(`../../build/${BENCH_COLLECT_STATS ? "libv86-debug" : "libv86"}.js`).V86; -const print_stats = require("../../build/libv86.js").print_stats; +const { V86, print_stats } = require(`../../build/${BENCH_COLLECT_STATS ? "libv86-debug" : "libv86"}.js`); const path = require("path"); const V86_ROOT = path.join(__dirname, "../.."); @@ -16,13 +15,8 @@ const emulator = new V86({ memory_size: 512 * 1024 * 1024, vga_memory_size: 8 * 1024 * 1024, network_relay_url: "", - initial_state: { url: __dirname + "/../../images/arch_state.bin" }, - filesystem: { - basefs: { - url: path.join(V86_ROOT, "/images/fs.json"), - }, - baseurl: path.join(V86_ROOT, "/images/arch-nongz/"), - }, + initial_state: { url: path.join(V86_ROOT, "/images/arch_state.bin") }, + filesystem: { baseurl: path.join(V86_ROOT, "/images/arch-nongz/") }, screen_dummy: true, log_level: 0, });