File tree 3 files changed +4
-4
lines changed
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -294,7 +294,7 @@ build/integration-test-fs/fs.json: images/buildroot-bzimage68.bin
294
294
rm build/integration-test-fs/fs.tar build/integration-test-fs/bzImage build/integration-test-fs/initrd
295
295
296
296
tests : all-debug build/integration-test-fs/fs.json
297
- ./tests/full/run.js
297
+ LOG_LEVEL=3 ./tests/full/run.js
298
298
299
299
tests-release : build/libv86.js build/v86.wasm build/integration-test-fs/fs.json
300
300
TEST_RELEASE_BUILD=1 ./tests/full/run.js
@@ -315,7 +315,7 @@ jitpagingtests: all-debug
315
315
316
316
qemutests : all-debug
317
317
$(MAKE ) -C tests/qemu test-i386
318
- ./tests/qemu/run.js build/qemu-test-result
318
+ LOG_LEVEL=3 ./tests/qemu/run.js build/qemu-test-result
319
319
./tests/qemu/run-qemu.js > build/qemu-test-reference
320
320
diff build/qemu-test-result build/qemu-test-reference
321
321
Original file line number Diff line number Diff line change @@ -1017,7 +1017,7 @@ function run_test(test, done)
1017
1017
vga_bios : { url : vga_bios } ,
1018
1018
autostart : true ,
1019
1019
memory_size : test . memory_size || 128 * 1024 * 1024 ,
1020
- log_level : 0 ,
1020
+ log_level : + process . env . LOG_LEVEL || 0 ,
1021
1021
cmdline : test . cmdline ,
1022
1022
} ;
1023
1023
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ var emulator = new V86({
22
22
memory_size : 32 * 1024 * 1024 ,
23
23
filesystem : { } ,
24
24
disable_jit : + process . env . DISABLE_JIT ,
25
- log_level : 3 ,
25
+ log_level : + process . env . LOG_LEVEL || 0 ,
26
26
} ) ;
27
27
28
28
emulator . bus . register ( "emulator-started" , function ( )
You can’t perform that action at this time.
0 commit comments