forked from Kitware/VTK
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvtkModuleTesting.cmake
733 lines (614 loc) · 23 KB
/
vtkModuleTesting.cmake
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
#[==[.md
# `vtkModuleTesting`
VTK uses the [ExternalData][] CMake module to handle the data management for
its test suite. Test data is only downloaded when a test which requires it is
enabled and it is cached so that every build does not need to redownload the
same data.
To facilitate this workflow, there are a number of CMake functions available in
order to indicate that test data is required.
[ExternalData]: TODO
#]==]
include(ExternalData)
get_filename_component(_vtkModuleTesting_dir "${CMAKE_CURRENT_LIST_FILE}" DIRECTORY)
#[==[.md
## Loading data
Data may be downloaded manually using this function:
~~~
vtk_module_test_data(<PATHSPEC>...)
~~~
This will download data inside of the input data directory for the modules
being built at that time (see the `TEST_INPUT_DATA_DIRECTORY` argument of
`vtk_module_build`).
For supported `PATHSPEC` syntax, see the
[associated documentation][ExternalData pathspecs] in `ExternalData`. These
arguments are already wrapped in the `DATA{}` syntax and are assumed to be
relative paths from the input data directory.
[ExternalData pathspecs]: TODO
#]==]
function (vtk_module_test_data)
set(data_args)
foreach (arg IN LISTS ARGN)
if (IS_ABSOLUTE "${arg}")
list(APPEND data_args
"DATA{${arg}}")
else ()
list(APPEND data_args
"DATA{${_vtk_build_TEST_INPUT_DATA_DIRECTORY}/${arg}}")
endif ()
endforeach ()
ExternalData_Expand_Arguments("${_vtk_build_TEST_DATA_TARGET}" _ ${data_args})
endfunction ()
#[==[.md
## Creating test executables
This function creates an executable from the list of sources passed to it. It
is automatically linked to the module the tests are intended for as well as any
declared test dependencies of the module.
~~~
vtk_module_test_executable(<NAME> <SOURCE>...)
~~~
This function is not usually used directly, but instead through the other
convenience functions.
#]==]
function (vtk_module_test_executable name)
add_executable("${name}" ${ARGN})
get_property(test_depends GLOBAL
PROPERTY "_vtk_module_${_vtk_build_test}_test_depends")
get_property(test_optional_depends GLOBAL
PROPERTY "_vtk_module_${_vtk_build_test}_test_optional_depends")
set(optional_depends_flags)
foreach (test_optional_depend IN LISTS test_optional_depends)
if (TARGET "${test_optional_depend}")
list(APPEND test_depends
"${test_optional_depend}")
endif ()
string(REPLACE "::" "_" safe_test_optional_depend "${test_optional_depend}")
list(APPEND optional_depends_flags
"VTK_MODULE_ENABLE_${safe_test_optional_depend}=$<TARGET_EXISTS:${test_optional_depend}>")
endforeach ()
target_link_libraries("${name}"
PRIVATE
"${_vtk_build_test}"
${test_depends})
target_compile_definitions("${name}"
PRIVATE
${optional_depends_flags})
vtk_module_autoinit(
TARGETS "${name}"
MODULES "${_vtk_build_test}"
${test_depends})
endfunction ()
#[==[.md
## Test name parsing
Test names default to using the basename of the filename which contains the
test. Two tests may share the same file by prefixing with a custom name for the
test and a comma.
The two parsed syntaxes are:
- `CustomTestName,TestFile`
- `TestFile`
Note that `TestFile` should already have had its extension stripped (usually
done by `_vtk_test_parse_args`).
In general, the name of a test will be `<EXENAME>-<TESTNAME>`, however, by
setting `vtk_test_prefix`, the test name will instead be
`<EXENAME>-<PREFIX><TESTNAME>`.
#]==]
#[==[.md INTERNAL
This function parses the name from a testspec. The calling scope has
`test_name`, `test_arg`, and `test_file` variables set in it.
~~~
_vtk_test_parse_name(<TESTSPEC>)
~~~
#]==]
function (_vtk_test_parse_name name ext)
if (name AND name MATCHES "^([^,]*),(.*)$")
set(test_name "${CMAKE_MATCH_1}")
set(test_file "${CMAKE_MATCH_2}")
else ()
# Strip the extension from the test name.
string(REPLACE ".${ext}" "" test_name "${name}")
set(test_name "${test_name}")
set(test_file "${name}")
endif ()
string(REPLACE ".${ext}" "" test_arg "${test_file}")
set(test_name "${test_name}" PARENT_SCOPE)
set(test_file "${test_file}" PARENT_SCOPE)
set(test_arg "${test_arg}" PARENT_SCOPE)
endfunction ()
#[==[.md
## Test function arguments
Each test is specified using one of the two following syntaxes
- `<NAME>.<SOURCE_EXT>`
- `<NAME>.<SOURCE_EXT>,<OPTIONS>`
Where `NAME` is a valid test name. If present, the specified `OPTIONS` are only
for the associated test. The expected extension is specified by the associated
test function.
#]==]
#[==[.md INTERNAL
Given a list of valid "options", this function will parse out a the following
variables:
- `args`: Unrecognized arguments. These should be interpreted as arguments
that should be passed on the command line to all tests in this parse group.
- `options`: Options specified globally (for all tests in this group).
- `names`: A list containing all named tests. These should be parsed by
`_vtk_test_parse_name`.
- `_<NAME>_options`: Options specific to a certain test.
~~~
_vtk_test_parse_args(<OPTIONS> <SOURCE_EXT> <ARG>...)
~~~
In order to be recognized as a source file, the `SOURCE_EXT` must be used.
Without it, all non-option arguments are placed into `args`. Each test is
parsed out matching these:
#]==]
function (_vtk_test_parse_args options source_ext)
set(global_options)
set(names)
set(args)
foreach (arg IN LISTS ARGN)
set(handled 0)
foreach (option IN LISTS options)
if (arg STREQUAL option)
list(APPEND global_options "${option}")
set(handled 1)
break ()
endif ()
endforeach ()
if (handled)
# Do nothing.
elseif (source_ext AND arg MATCHES "^([^.]*\\.${source_ext}),?(.*)$")
set(name "${CMAKE_MATCH_1}")
string(REPLACE "," ";" "_${name}_options" "${CMAKE_MATCH_2}")
list(APPEND names "${name}")
else ()
list(APPEND args "${arg}")
endif ()
endforeach ()
foreach (name IN LISTS names)
set("_${name}_options" "${_${name}_options}"
PARENT_SCOPE)
endforeach ()
set(options "${global_options}"
PARENT_SCOPE)
set(names "${names}"
PARENT_SCOPE)
set(args "${args}"
PARENT_SCOPE)
endfunction ()
#[==[.md INTERNAL
For handling global option settings, this function sets variables in the
calling scoped named `<PREFIX><OPTION>` to either `0` or `1` if the option is
present in the remaining argument list.
~~~
_vtk_test_set_options(<OPTIONS> <PREFIX> <ARG>...)
~~~
Additionally, a non-`0` default for a given option may be specified by a
variable with the same name as the option and specifying a prefix for the
output variables.
#]==]
function (_vtk_test_set_options options prefix)
foreach (option IN LISTS options)
set(default 0)
if (prefix)
set(default "${${option}}")
endif ()
set("${prefix}${option}" "${default}"
PARENT_SCOPE)
endforeach ()
foreach (option IN LISTS ARGN)
set("${prefix}${option}" 1
PARENT_SCOPE)
endforeach ()
endfunction ()
# If set, use the maximum number of processors for tests. Otherwise, just use 1
# processor by default.
set(VTK_MPI_NUMPROCS "2" CACHE STRING
"Number of processors available to run parallel tests.")
# Hide the variable if we don't have `MPIEXEC_EXECUTABLE` anyways.
if (MPIEXEC_EXECUTABLE)
set(_vtk_mpi_max_numprocs_type STRING)
else ()
set(_vtk_mpi_max_numprocs_type INTERNAL)
endif ()
set_property(CACHE VTK_MPI_NUMPROCS
PROPERTY
TYPE "${_vtk_mpi_max_numprocs_type}")
#[==[.md
## C++ tests
This function declares C++ tests. Source files are required to use the `cxx`
extension.
~~~
vtk_add_test_cxx(<EXENAME> <VARNAME> <ARG>...)
~~~
Each argument should be either an option, a test specification, or it is passed
as flags to all tests declared in the group. The list of tests is set in the
`<VARNAME>` variable in the calling scope.
Options:
- `NO_DATA`: The test does not need to know the test input data directory. If
it does, it is passed on the command line via the `-D` flag.
- `NO_VALID`: The test does not have a valid baseline image. If it does, the
baseline is assumed to be in `../Data/Baseline/<NAME>.png` relative to the
current source directory. If alternate baseline images are required,
`<NAME>` may be suffixed by `_1`, `_2`, etc. The valid image is passed via
the `-V` flag.
- `NO_OUTPUT`: The test does not need to write out any data to the
filesystem. If it does, a directory which may be written to is passed via
the `-T` flag.
Additional flags may be passed to tests using the `${_vtk_build_test}_ARGS`
variable or the `<NAME>_ARGS` variable.
#]==]
function (vtk_add_test_cxx exename _tests)
set(cxx_options
NO_DATA
NO_VALID
NO_OUTPUT)
_vtk_test_parse_args("${cxx_options}" "cxx" ${ARGN})
_vtk_test_set_options("${cxx_options}" "" ${options})
set(_vtk_fail_regex
# vtkLogger
"(\n|^)ERROR: "
"ERR\\|"
# vtkDebugLeaks
"instance(s)? still around"
# vtkTesting
"Failed Image Test"
"DartMeasurement name=.ImageNotFound")
set(_vtk_skip_regex
# Insufficient graphics resources.
"Attempt to use a texture buffer exceeding your hardware's limits")
foreach (name IN LISTS names)
_vtk_test_set_options("${cxx_options}" "local_" ${_${name}_options})
_vtk_test_parse_name("${name}" "cxx")
set(_D "")
if (NOT local_NO_DATA)
set(_D -D "${_vtk_build_TEST_OUTPUT_DATA_DIRECTORY}")
endif ()
set(_T "")
if (NOT local_NO_OUTPUT)
set(_T -T "${_vtk_build_TEST_OUTPUT_DIRECTORY}")
endif ()
set(_V "")
if (NOT local_NO_VALID)
set(_V -V "DATA{${CMAKE_CURRENT_SOURCE_DIR}/../Data/Baseline/${test_name}.png,:}")
endif ()
if (VTK_USE_MPI AND
VTK_SERIAL_TESTS_USE_MPIEXEC)
set(_vtk_test_cxx_pre_args
"${MPIEXEC_EXECUTABLE}"
"${MPIEXEC_NUMPROC_FLAG}" "1"
${MPIEXEC_PREFLAGS})
endif()
ExternalData_add_test("${_vtk_build_TEST_DATA_TARGET}"
NAME "${_vtk_build_test}Cxx-${vtk_test_prefix}${test_name}"
COMMAND "${_vtk_test_cxx_pre_args}" "$<TARGET_FILE:${exename}>"
"${test_arg}"
${args}
${${_vtk_build_test}_ARGS}
${${test_name}_ARGS}
${_D} ${_T} ${_V})
set_tests_properties("${_vtk_build_test}Cxx-${vtk_test_prefix}${test_name}"
PROPERTIES
LABELS "${_vtk_build_test_labels}"
FAIL_REGULAR_EXPRESSION "${_vtk_fail_regex}"
SKIP_REGULAR_EXPRESSION "${_vtk_skip_regex}"
# This must match VTK_SKIP_RETURN_CODE in vtkTesting.h
SKIP_RETURN_CODE 125
)
if (_vtk_testing_ld_preload)
set_property(TEST "${_vtk_build_test}Cxx-${vtk_test_prefix}${test_name}" APPEND
PROPERTY
ENVIRONMENT "LD_PRELOAD=${_vtk_testing_ld_preload}")
endif ()
list(APPEND ${_tests} "${test_file}")
endforeach ()
set("${_tests}" ${${_tests}} PARENT_SCOPE)
endfunction ()
#[==[.md
### MPI tests
This function declares C++ tests which should be run under an MPI environment.
Source files are required to use the `cxx` extension.
~~~
vtk_add_test_mpi(<EXENAME> <VARNAME> <ARG>...)
~~~
Each argument should be either an option, a test specification, or it is passed
as flags to all tests declared in the group. The list of tests is set in the
`<VARNAME>` variable in the calling scope.
Options:
- `TESTING_DATA`
- `NO_VALID`: The test does not have a valid baseline image. If it does, the
baseline is assumed to be in `../Data/Baseline/<NAME>.png` relative to the
current source directory. If alternate baseline images are required,
`<NAME>` may be suffixed by `_1`, `_2`, etc. The valid image is passed via
the `-V` flag.
Each test is run using the number of processors specified by the following
variables (using the first one which is set):
- `<NAME>_NUMPROCS`
- `<EXENAME>_NUMPROCS`
- `VTK_MPI_NUMPROCS` (defaults to `2`)
Additional flags may be passed to tests using the `${_vtk_build_test}_ARGS`
variable or the `<NAME>_ARGS` variable.
#]==]
function (vtk_add_test_mpi exename _tests)
set(mpi_options
TESTING_DATA
NO_VALID
)
_vtk_test_parse_args("${mpi_options}" "cxx" ${ARGN})
_vtk_test_set_options("${mpi_options}" "" ${options})
set(_vtk_fail_regex "(\n|^)ERROR: " "ERR\\|" "instance(s)? still around")
set(_vtk_skip_regex
# Insufficient graphics resources.
"Attempt to use a texture buffer exceeding your hardware's limits")
set(default_numprocs ${VTK_MPI_NUMPROCS})
if (${exename}_NUMPROCS)
set(default_numprocs ${${exename}_NUMPROCS})
endif ()
foreach (name IN LISTS names)
_vtk_test_set_options("${mpi_options}" "local_" ${_${name}_options})
_vtk_test_parse_name(${name} "cxx")
set(_D "")
set(_T "")
set(_V "")
if (local_TESTING_DATA)
set(_D -D "${_vtk_build_TEST_OUTPUT_DATA_DIRECTORY}")
set(_T -T "${_vtk_build_TEST_OUTPUT_DIRECTORY}")
set(_V "")
if (NOT local_NO_VALID)
set(_V -V "DATA{${CMAKE_CURRENT_SOURCE_DIR}/../Data/Baseline/${test_name}.png,:}")
endif ()
endif ()
set(numprocs ${default_numprocs})
if (${test_name}_NUMPROCS)
set(numprocs "${${test_name}_NUMPROCS}")
endif ()
ExternalData_add_test("${_vtk_build_TEST_DATA_TARGET}"
NAME "${_vtk_build_test}Cxx-MPI-${vtk_test_prefix}${test_name}"
COMMAND "${MPIEXEC_EXECUTABLE}"
"${MPIEXEC_NUMPROC_FLAG}" "${numprocs}"
${MPIEXEC_PREFLAGS}
"$<TARGET_FILE:${exename}>"
"${test_arg}"
${_D} ${_T} ${_V}
${args}
${${_vtk_build_test}_ARGS}
${${test_name}_ARGS}
${MPIEXEC_POSTFLAGS})
set_tests_properties("${_vtk_build_test}Cxx-MPI-${vtk_test_prefix}${test_name}"
PROPERTIES
LABELS "${_vtk_build_test_labels}"
PROCESSORS "${numprocs}"
FAIL_REGULAR_EXPRESSION "${_vtk_fail_regex}"
SKIP_REGULAR_EXPRESSION "${_vtk_skip_regex}"
# This must match VTK_SKIP_RETURN_CODE in vtkTesting.h"
SKIP_RETURN_CODE 125
)
if (_vtk_testing_ld_preload)
set_property(TEST "${_vtk_build_test}Cxx-MPI-${vtk_test_prefix}${test_name}" APPEND
PROPERTY
ENVIRONMENT "LD_PRELOAD=${_vtk_testing_ld_preload}")
endif ()
set_property(TEST "${_vtk_build_test}Cxx-MPI-${vtk_test_prefix}${test_name}" APPEND
PROPERTY
REQUIRED_FILES "$<TARGET_FILE:${exename}>")
list(APPEND ${_tests} "${test_file}")
endforeach ()
set(${_tests} ${${_tests}} PARENT_SCOPE)
endfunction ()
#[==[.md
### C++ test executable
~~~
vtk_test_cxx_executable(<EXENAME> <VARNAME> [RENDERING_FACTORY] [<SRC>...])
~~~
Creates an executable named `EXENAME` which contains the tests listed in the
variable named in the `VARNAME` argument. The `EXENAME` must match the
`EXENAME` passed to the test declarations when building the list of tests.
If `RENDERING_FACTORY` is provided, VTK's rendering factories are initialized
during the test.
Any additional arguments are added as additional sources for the executable.
#]==]
function (vtk_test_cxx_executable exename _tests)
set(exe_options
RENDERING_FACTORY)
_vtk_test_parse_args("${exe_options}" "" ${ARGN})
_vtk_test_set_options("${exe_options}" "" ${options})
if (NOT ${_tests})
# No tests -> no need for an executable.
return()
endif ()
if (RENDERING_FACTORY)
include("${_vtkModuleTesting_dir}/vtkTestingRenderingDriver.cmake")
set(test_driver vtkTestingObjectFactory.h)
else ()
include("${_vtkModuleTesting_dir}/vtkTestingDriver.cmake")
set(test_driver vtkTestDriver.h)
endif ()
set(extra_sources ${args})
create_test_sourcelist(test_sources "${exename}.cxx" ${${_tests}}
EXTRA_INCLUDE "${test_driver}")
if (_vtk_build_test)
vtk_module_test_executable("${exename}" ${test_sources} ${extra_sources})
else ()
message(FATAL_ERROR "_vtk_build_test is not set!")
endif ()
endfunction ()
#[==[.md INTERNAL
MPI executables used to have their own test executable function. This is no
longer necessary and is deprecated. Instead, `vtk_test_cxx_executable` should
be used instead.
#]==]
function (vtk_test_mpi_executable exename _tests)
message(DEPRECATION
"The `vtk_test_mpi_executable` function is deprecated; use "
"`vtk_test_cxx_executable` instead.")
vtk_test_cxx_executable("${exename}" "${_tests}" ${ARGN})
endfunction ()
#[==[.md
## Python tests
This function declares Python tests. Test files are required to use the `py`
extension.
~~~
vtk_add_test_python(<EXENAME> <VARNAME> <ARG>...)
~~~
#]==]
#[==[.md INTERNAL
If the `_vtk_testing_python_exe` variable is not set, the `vtkpython` binary is
used by default. Additional arguments may be passed in this variable as well.
#]==]
#[==[.md
Options:
- `NO_DATA`
- `NO_VALID`
- `NO_OUTPUT`
- `NO_RT`
- `JUST_VALID`
Each argument should be either an option, a test specification, or it is passed
as flags to all tests declared in the group. The list of tests is set in the
`<VARNAME>` variable in the calling scope.
Options:
- `NO_DATA`: The test does not need to know the test input data directory. If
it does, it is passed on the command line via the `-D` flag.
- `NO_OUTPUT`: The test does not need to write out any data to the
filesystem. If it does, a directory which may be written to is passed via
the `-T` flag.
- `NO_VALID`: The test does not have a valid baseline image. If it does, the
baseline is assumed to be in `../Data/Baseline/<NAME>.png` relative to the
current source directory. If alternate baseline images are required,
`<NAME>` may be suffixed by `_1`, `_2`, etc. The valid image is passed via
the `-V` flag.
- `NO_RT`: If `NO_RT` is specified, `-B` is passed instead of `-V`, only
providing a baseline dir, assuming `NO_VALID` is not specified.
- `DIRECT_DATA` : If `DIRECT_DATA` is specified, the baseline path will be provided
as is, without the use of ExternalData_add_test.
- `JUST_VALID`: Only applies when both `NO_VALID` and `NO_RT` are not
present. If it is not specified, `-A` is passed with path to the directory
of the `vtkTclTest2Py` Python package and the test is run via the
`rtImageTest.py` script. Note that this currently only works when building
against a VTK build tree; the VTK install tree does not include this script
or its associated Python package.
Additional flags may be passed to tests using the `${_vtk_build_test}_ARGS`
variable or the `<NAME>_ARGS` variable.
Note that the `vtkTclTest2Py` support will eventually be removed. It is a
legacy of the conversion of many tests from Tcl to Python.
#]==]
function (vtk_add_test_python)
if (NOT _vtk_testing_python_exe)
set(_vtk_testing_python_exe "$<TARGET_FILE:VTK::vtkpython>")
endif ()
set(python_options
NO_DATA
NO_VALID
NO_OUTPUT
NO_RT
DIRECT_DATA
JUST_VALID
)
_vtk_test_parse_args("${python_options}" "py" ${ARGN})
_vtk_test_set_options("${python_options}" "" ${options})
set(_vtk_fail_regex "(\n|^)ERROR: " "ERR\\|" "instance(s)? still around")
set(_vtk_skip_regex
# Insufficient graphics resources.
"Attempt to use a texture buffer exceeding your hardware's limits")
foreach (name IN LISTS names)
_vtk_test_set_options("${python_options}" "local_" ${_${name}_options})
_vtk_test_parse_name(${name} "py")
set(_D "")
if (NOT local_NO_DATA)
set(_D -D "${_vtk_build_TEST_OUTPUT_DATA_DIRECTORY}")
endif ()
set(rtImageTest "")
set(_B "")
set(_V "")
set(_A "")
if (NOT local_NO_VALID)
if (local_NO_RT)
if (local_DIRECT_DATA)
set(_B -B "${CMAKE_CURRENT_SOURCE_DIR}/Data/Baseline/")
else ()
set(_B -B "DATA{${CMAKE_CURRENT_SOURCE_DIR}/../Data/Baseline/,REGEX:${test_name}(-.*)?(_[0-9]+)?.png}")
endif()
else ()
if (local_DIRECT_DATA)
set(_V -V "${CMAKE_CURRENT_SOURCE_DIR}/Data/Baseline/${test_name}.png")
else ()
set(_V -V "DATA{${CMAKE_CURRENT_SOURCE_DIR}/../Data/Baseline/${test_name}.png,:}")
endif()
if (NOT local_JUST_VALID)
# TODO: This should be fixed to also work from an installed VTK.
set(rtImageTest "${VTK_SOURCE_DIR}/Utilities/vtkTclTest2Py/rtImageTest.py")
set(_A -A "${VTK_SOURCE_DIR}/Utilities/vtkTclTest2Py")
endif ()
endif ()
endif ()
set(_T "")
if (NOT local_NO_OUTPUT)
set(_T -T "${_vtk_build_TEST_OUTPUT_DIRECTORY}")
endif ()
if (NOT _vtk_build_TEST_FILE_DIRECTORY)
set(_vtk_build_TEST_FILE_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR})
endif()
if (VTK_USE_MPI AND
VTK_SERIAL_TESTS_USE_MPIEXEC AND
NOT DEFINED _vtk_test_python_pre_args)
set(_vtk_test_python_pre_args
"${MPIEXEC_EXECUTABLE}"
"${MPIEXEC_NUMPROC_FLAG}" "1"
${MPIEXEC_PREFLAGS})
endif()
set(testArgs NAME "${_vtk_build_test}Python${_vtk_test_python_suffix}-${vtk_test_prefix}${test_name}"
COMMAND ${_vtk_test_python_pre_args}
"${_vtk_testing_python_exe}" ${_vtk_test_python_args} --enable-bt
${rtImageTest}
"${_vtk_build_TEST_FILE_DIRECTORY}/${test_file}"
${args}
${${_vtk_build_test}_ARGS}
${${test_name}_ARGS}
${_D} ${_B} ${_T} ${_V} ${_A})
if (local_DIRECT_DATA)
add_test(${testArgs})
else ()
ExternalData_add_test("${_vtk_build_TEST_DATA_TARGET}" ${testArgs})
endif()
if (_vtk_testing_ld_preload)
set_property(TEST "${_vtk_build_test}Python${_vtk_test_python_suffix}-${vtk_test_prefix}${test_name}"
APPEND
PROPERTY
ENVIRONMENT "LD_PRELOAD=${_vtk_testing_ld_preload}")
endif ()
set_tests_properties("${_vtk_build_test}Python${_vtk_test_python_suffix}-${vtk_test_prefix}${test_name}"
PROPERTIES
LABELS "${_vtk_build_test_labels}"
FAIL_REGULAR_EXPRESSION "${_vtk_fail_regex}"
SKIP_REGULAR_EXPRESSION "${_vtk_skip_regex}"
# This must match the skip() function in vtk/test/Testing.py"
SKIP_RETURN_CODE 125
)
if (numprocs)
set_tests_properties("${_vtk_build_test}Python${_vtk_test_python_suffix}-${vtk_test_prefix}${test_name}"
PROPERTIES
PROCESSORS "${numprocs}")
endif ()
endforeach ()
endfunction ()
#[==[.md
### MPI tests
A small wrapper around `vtk_add_test_python` which adds support for running
MPI-aware tests written in Python.
The `$<module library name>_NUMPROCS` variable may be used to use a non-default
number of processors for a test.
This forces running with the `pvtkpython` executable.
#]==]
function (vtk_add_test_python_mpi)
set(_vtk_test_python_suffix "-MPI")
set(numprocs "${VTK_MPI_NUMPROCS}")
_vtk_module_get_module_property("${_vtk_build_test}"
PROPERTY "library_name"
VARIABLE _vtk_test_python_library_name)
if (${_vtk_test_python_library_name}_NUMPROCS)
set(numprocs "${${_vtk_test_python_library_name}_NUMPROCS}")
endif ()
set(_vtk_test_python_pre_args
"${MPIEXEC_EXECUTABLE}"
"${MPIEXEC_NUMPROC_FLAG}" "${numprocs}"
${MPIEXEC_PREFLAGS})
if (NOT _vtk_testing_python_exe)
set(_vtk_testing_python_exe "$<TARGET_FILE:VTK::pvtkpython>")
endif ()
vtk_add_test_python(${ARGN})
endfunction ()