Skip to content

Commit 0d52fed

Browse files
authored
Disable unsupported conformance test-suites (#2817)
* disable unsupported test suites * update failing.llvm
1 parent 225a508 commit 0d52fed

File tree

3 files changed

+3
-516
lines changed

3 files changed

+3
-516
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,11 @@ download-json-fixtures:
4949
cd tests/execution-spec-tests && bash get_execution_spec_tests.sh
5050

5151
test-fixtures: download-json-fixtures
52-
$(MAKE) -C kevm-pyk/ test-integration PYTEST_ARGS+="-k test_execution_spec_tests.py"
52+
$(MAKE) -C kevm-pyk/ test-integration PYTEST_ARGS+="-k test_execution_spec_tests.py -k test_bchain"
5353

5454
fixtures-failing-list: download-json-fixtures
5555
cat /dev/null > tests/execution-spec-tests/failing.llvm
56-
- $(MAKE) -C kevm-pyk/ test-integration PYTEST_ARGS+="-k test_execution_spec_tests.py --save-failing --maxfail=10000"
56+
- $(MAKE) -C kevm-pyk/ test-integration PYTEST_ARGS+="-k test_execution_spec_tests.py -k test_bchain --save-failing --maxfail=10000"
5757
LC_ALL=en_US.UTF-8 sort -f -d -o tests/execution-spec-tests/failing.llvm tests/execution-spec-tests/failing.llvm
5858
if [ "$(shell uname)" = "Darwin" ]; then \
5959
sed -i '' '1{/^[[:space:]]*$$/d;}' tests/execution-spec-tests/failing.llvm ;\

kevm-pyk/src/tests/integration/test_execution_spec_tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ def test_bchain(test_file: Path, save_failing: bool) -> None:
6161
BCHAIN_ENGINE_TESTS,
6262
ids=[str(test_file.relative_to(BCHAIN_ENGINE_TEST_DIR)) for test_file in BCHAIN_ENGINE_TESTS],
6363
)
64-
def test_bchain_engine(test_file: Path, save_failing: bool) -> None:
64+
def test_engine_bchain(test_file: Path, save_failing: bool) -> None:
6565
_test(
6666
test_file,
6767
schedule='PRAGUE',

0 commit comments

Comments
 (0)