()
| 242 | # functions, structs and includes are all extracted. |
| 243 | |
| 244 | def test_cuda_no_error(): |
| 245 | r = extract_cpp(FIXTURES / "sample.cu") |
| 246 | assert "error" not in r |
| 247 | |
| 248 | def test_cuda_finds_kernel_and_device_functions(): |
| 249 | r = extract_cpp(FIXTURES / "sample.cu") |
nothing calls this directly
no test coverage detected