From 680f4232a85c9371a75f84d584f9e377c845a833 Mon Sep 17 00:00:00 2001 From: "Brandon T. Willard" Date: Sat, 13 Mar 2021 20:18:42 -0600 Subject: [PATCH] Add comments about bad/non-tests in tests.link.test_vm --- tests/link/test_vm.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/link/test_vm.py b/tests/link/test_vm.py index bc5b93fb8d..e29e8f8ea7 100644 --- a/tests/link/test_vm.py +++ b/tests/link/test_vm.py @@ -84,6 +84,8 @@ def test_use_c_thunks(): not config.cxx, reason="G++ not available, so we need to skip this test." ) def test_speed(): + # TODO FIXME: This isn't a real test. + def build_graph(x, depth=5): z = x for d in range(depth): @@ -148,6 +150,8 @@ def time_linker(name, linker): def test_speed_lazy(): + # TODO FIXME: This isn't a real test. + def build_graph(x, depth=5): z = x for d in range(depth):