Lines Matching refs:test

26 $ make [-j <n>] test PETSC_ARCH=<PETSC_ARCH>
33 $ make [-j <n>] -f share/petsc/examples/gmakefile.test test
36 which will create/use the directories `tests/*` in the current directory for generated test files.
42 $ make help-test
45 ## Understanding test output and more information
47 Depending on your machine’s configuration running the full test suite
49 currently we do not have a mechanism for automatically running the test
54 The test reporting system classifies them according to the Test Anywhere
57 - `ok` The test passed.
58 - `not ok` The test failed.
59 - `not ok #SKIP` The test was skipped, usually because build
63 - `ok #TODO` The test is under development by the developers.
66 contained within the test source file, that are invoked by the makefile
72 For example, test `vec_vec_tutorials-ex6`, which can be run e.g. with
75 $ make test search='vec_vec_tutorials-ex6'
93 examples have default arguments, and we often wish to test examples with
101 $ make test search='ts*' # Run all TS examples
102 $ make test searchin='tutorials' # Run all tutorials
103 $ make test search='ts*' searchin='tutorials' # Run all TS tutorials
104 $ make test argsearch='cuda' # Run examples with cuda in arguments
105 $ make test test-fail='1'
106 $ make test query='requires' queryval='*MPI_PROCESS_SHARED_MEMORY*'
110 The `print-test` target helps with this:
113 $ make print-test argsearch='cuda'
116 To see all of the test targets which would be run, this command can be
120 $ make print-test
123 To learn more about the test system details, one can look at the
126 ## Using the test harness for your own code
130 `src/ts/tutorials/makefile` and standalone test applications that the makefile can compile with, fo…
136 Include at the bottom of the test code a formatted comment indicating what tests should be run, see
142 $ make -f ${PETSC_DIR}/gmakefile.test TESTSRCDIR=/home/mine/mypackage/src TESTDIR=/home/mine/mytest…
145 There is not yet a mechanism to have your test code also link against your library, contact us for …