mirror of
https://github.com/pound-emu/pound.git
synced 2025-12-11 16:36:59 +00:00
jit/decoder: rename decoder script
Renames generate_decoder_tests.py to generate_jit_decoder_tests.py. Signed-off-by: Ronald Caesar <github43132@proton.me>
This commit is contained in:
parent
c508a927ea
commit
e714dc47d0
3 changed files with 4 additions and 4 deletions
|
|
@ -104,10 +104,10 @@ set(GEN_TEST_SRC ${CMAKE_CURRENT_SOURCE_DIR}/tests/jit/decoder/test_arm32_genera
|
|||
|
||||
add_custom_command(
|
||||
OUTPUT ${GEN_TEST_SRC}
|
||||
COMMAND Python3::Interpreter ${CMAKE_SOURCE_DIR}/scripts/generate_decoder_tests.py
|
||||
COMMAND Python3::Interpreter ${CMAKE_SOURCE_DIR}/scripts/generate_jit_decoder_tests.py
|
||||
${CMAKE_SOURCE_DIR}/src/jit/frontend/decoder/arm32.inc
|
||||
${GEN_TEST_SRC}
|
||||
DEPENDS ${CMAKE_SOURCE_DIR}/scripts/generate_decoder_tests.py
|
||||
DEPENDS ${CMAKE_SOURCE_DIR}/scripts/generate_jit_decoder_tests.py
|
||||
${CMAKE_SOURCE_DIR}/src/jit/frontend/decoder/arm32.inc
|
||||
COMMENT "Generating ARM32 Decoder Tests"
|
||||
)
|
||||
|
|
|
|||
|
|
@ -82,7 +82,7 @@ from typing import List, Dict, Optional, Tuple
|
|||
CPP_HEADER = """/*
|
||||
* GENERATED FILE - DO NOT EDIT
|
||||
*
|
||||
* This file is generated by scripts/generate_decoder_tests.py
|
||||
* This file is generated by scripts/generate_jit_decoder_tests.py
|
||||
*
|
||||
* PURPOSE:
|
||||
* Provides 100% requirements-based test coverage for the ARM32 Instruction Decoder.
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
/*
|
||||
* GENERATED FILE - DO NOT EDIT
|
||||
*
|
||||
* This file is generated by scripts/generate_decoder_tests.py
|
||||
* This file is generated by scripts/generate_jit_decoder_tests.py
|
||||
*
|
||||
* PURPOSE:
|
||||
* Provides 100% requirements-based test coverage for the ARM32 Instruction Decoder.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue