From b67fd766a1f35941ee47cee68743dcd06c81560b Mon Sep 17 00:00:00 2001 From: Andrei Vlad LUTAS Date: Mon, 23 Sep 2024 20:25:56 +0300 Subject: [PATCH] Fixed conf file example block. --- tests/README.md | 27 +++++++++++++-------------- 1 file changed, 13 insertions(+), 14 deletions(-) diff --git a/tests/README.md b/tests/README.md index cf5edd0..b15f147 100644 --- a/tests/README.md +++ b/tests/README.md @@ -36,19 +36,18 @@ Note that bddisasm will be run with the `-exi` option, in order to dump all poss # Configuration File The configuration file contains a list of entries that each describe a test. Each entry in the configuration file has the following structure: - ``` - [ - ... - { - "f_source": "path/to/file.asm", # the path to .asm file - "f_result": "path/to/file.result", # the path to .result file - "f_test": "path/to/file.test", # the path to .test file - "options": "disasmtool option", # options for disasmtool - "command": "disasmtool command" # command for disasmtool (decode/shemu) - } - ... - ] - - ``` +``` +[ +... +{ + "f_source": "path/to/file.asm", # the path to .asm file + "f_result": "path/to/file.result", # the path to .result file + "f_test": "path/to/file.test", # the path to .test file + "options": "disasmtool option", # options for disasmtool + "command": "disasmtool command" # command for disasmtool (decode/shemu) +} +... +] +``` NOTE: The paths in the configuration file are relative to it. \ No newline at end of file