Home
last modified time | relevance | path

Searched refs:test (Results 1 – 25 of 568) sorted by relevance

12345678910>>...23

/petsc/doc/manual/
H A Dtests.md26 $ 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.
[all …]
/petsc/doc/developers/
H A Dtesting.md5 The PETSc test system consists of
7 - Formatted comments at the bottom of the tutorials and test source files that describes the tests …
8 - The *test generator* (`config/gmakegentest.py`) that parses the tutorial and test source files an…
10 - The *PETSc test harness* that consists of makefile and shell scripts that runs the executables wi…
36 test:
37 test:
42 For our language, a *test* is associated with the following
48 … results*. It is also possible -- though unusual -- to have multiple output files for a single test
55 Our language also supports a *testset* that specifies either a new test
56 entirely or multiple executable/diff tests within a single test. At the
[all …]
/petsc/lib/petsc/bin/maint/
H A Dexampleslog.py107 for test in logDict[logfile]:
108 filename=self.findSrcfile(test)
111 testname=test.replace("diff-","") if test.startswith("diff-") else test
112 error=logDict[logfile][test].strip()
113 error=error if test==testname else "Diff errors:\n"+error
140 for test in testDict[fname]:
141 if test=='gitPerson': continue
142 testDict[fname][test]['ndays']=0
143 testDict[fname][test]['fdate']='Date'
156 for test in testDict[fname]:
[all …]
H A Dtestharness_util.py57 for test in d[root][exfile]:
58 if 'args' in d[root][exfile][test]:
59 args = d[root][exfile][test]['args']
61 if 'subtests' in d[root][exfile][test]:
62 for s in d[root][exfile][test]['subtests']:
63 if 'args' in d[root][exfile][test][s]:
64 args = d[root][exfile][test][s]['args']
/petsc/src/ksp/ksp/tests/
H A Dex86f.F9010 PetscInt test
19 test = 1
20 …PetscCallA(PetscOptionsGetInt(PETSC_NULL_OPTIONS, PETSC_NULL_CHARACTER, '-test', test, PETSC_NULL_…
21 if (test == 1) then
23 else if (test == 2) then
25 else if (test == 3) then
28 else if (test == 4) then
/petsc/src/ksp/ksp/tests/output/
H A Dex1_lsqr_1_ksp_convergence_test-default.out3 using PRECONDITIONED norm type for convergence test
5 convergence test: default
8 using DEFAULT norm type for convergence test
10 convergence test: lsqr
13 using DEFAULT norm type for convergence test
15 convergence test: default
H A Dex1_lsqr_0_ksp_convergence_test-default.out3 using PRECONDITIONED norm type for convergence test
5 convergence test: default
8 using DEFAULT norm type for convergence test
10 convergence test: lsqr
13 using DEFAULT norm type for convergence test
15 convergence test: default
H A Dex1_lsqr_2.out3 using UNPRECONDITIONED norm type for convergence test
5 convergence test: lsqr
8 using UNPRECONDITIONED norm type for convergence test
10 convergence test: lsqr
13 using UNPRECONDITIONED norm type for convergence test
15 convergence test: lsqr
H A Dex1_lsqr_1_ksp_convergence_test-skip.out4 convergence test: skip
7 using DEFAULT norm type for convergence test
9 convergence test: lsqr
13 convergence test: skip
H A Dex1_lsqr_0_ksp_convergence_test-skip.out4 convergence test: skip
7 using DEFAULT norm type for convergence test
9 convergence test: lsqr
13 convergence test: skip
/petsc/share/petsc/datafiles/meshes/
H A Dgmsh-3d-ascii.msh25 test: comment line 1
9 test: comment line 1
10 test: comment line 2
21 test: comment line 1
25 test: comment line 1
26 test: comment line 2
/petsc/src/sys/tests/output/
H A Dex35_1.out1 1st test
14 2nd test
37 3rd test
50 4th test
73 5th test
H A Dex7_1.out1 1st test
8 2nd test
/petsc/src/mat/tests/
H A Dex221.c69 PetscInt test, ntest = 2; in main() local
173 for (test = 0; test < ntest; test++) { in main()
177 …(!flg) PetscCall(PetscPrintf(PETSC_COMM_WORLD, "[test %" PetscInt_FMT "] Error mult add\n", test)); in main()
179 …scCall(PetscPrintf(PETSC_COMM_WORLD, "[test %" PetscInt_FMT "] Error mult transpose add\n", test)); in main()
181 …scPrintf(PETSC_COMM_WORLD, "[test %" PetscInt_FMT "] Error mult Hermitian transpose add\n", test)); in main()
188 if (rank == (test % size)) { in main()
191 if (test % 2) { in main()
192 idxs[0] = (2 * M - 1 - test / 2) % M; in main()
194 idxs[0] = (test / 2) % M; in main()
229 if (test % 2) { in main()
[all …]
H A Dex81.c9 PetscInt i, n = 10, col[3], test; in main() local
43 for (test = 0; test < 2; test++) { in main()
46 if (test == 0) { in main()
73 if (test == 1) PetscCall(MatView(B, PETSC_VIEWER_STDOUT_WORLD)); in main()
H A Dex195.c20 PetscBool equal, test = PETSC_FALSE, test_null = PETSC_FALSE; in main() local
90 PetscCall(PetscOptionsGetBool(NULL, NULL, "-test_nest*nest", &test, NULL)); in main()
91 if (test) PetscCall(MatMatMult(nest, nest, MAT_INITIAL_MATRIX, PETSC_DETERMINE, &C)); in main()
93 PetscCall(PetscOptionsGetBool(NULL, NULL, "-test_matproductsetfromoptions", &test, NULL)); in main()
94 if (test) { in main()
100 PetscCall(PetscOptionsGetBool(NULL, NULL, "-test_matproductsymbolic", &test, NULL)); in main()
101 if (test) { in main()
/petsc/
H A Dgmakefile.test8 # TESTSRCDIR is always relative to gmakefile.test
59 TESTFLAGS += -f # force test execution
68 TESTFLAGS += -d Launch test in debugger
219 if test -e "$(@:%.o=%.d)" && head -1 "$(@:%.o=%.d)" | grep -F -q -v : ; then\
226 # link line constructed differently for gmakefile vs gmakefile.test invocation
246 # ensure mpiexec and test executable is on firewall list
301 .PHONY: test pre-clean
303 # The Fortran compiler may use out-dated module files in the tutorial and test directories so delet…
304 remove-test-mod-files:
307 test: remove-test-mod-files report_tests
[all …]
/petsc/src/binding/petsc4py/docs/source/
H A Dinstall.rst40 $ python test/runtests.py
42 or via the makefile rule ``test``::
44 $ make test -C src/binding/petsc4py
48 $ python test/runtests.py -k test_optdb
54 $ python test/runtests.py --help
60 $ mpiexec -n 4 python test/runtests.py
64 $ make test-4 -C src/binding/petsc4py
H A Dcontributing.rst27 Tests are located in the :file:`src/binding/petsc4py/test` folder.
28 To add a new test, either add a new :file:`test_xxx.py` or modify a
36 $ python test/runtests.py -k test_xxx
39 you can test your additions by using the fully qualified name of the Python
42 $ python test/runtests.py -k test_xxx.class_name.method_name
/petsc/src/dm/impls/swarm/tests/output/
H A Dex8_0_constant.out1 The KS test for X accepts the null hypothesis at level 0.01 (1)
2 The KS test for V rejects the null hypothesis at level 0.01 (1.2e-09)
3 The KS test for |V| rejects the null hypothesis at level 0.01 (2e-33)
H A Dex8_0_gaussian.out1 The KS test for X rejects the null hypothesis at level 0.01 (6.6e-07)
2 The KS test for V rejects the null hypothesis at level 0.01 (9.5e-08)
3 The KS test for |V| rejects the null hypothesis at level 0.01 (9e-23)
/petsc/config/
H A Dgmakegentest.py319 def addToTests(self,test,rpath,exfile,execname,testDict): argument
325 nmtest=os.path.join(rpath,test)
640 for test in srcDict.copy():
641 if test in self.buildkeys: continue
642 isRun=self._isRun(srcDict[test])
647 if 'SKIP' in srcDict[test]:
648 …allow = srcDict[test]['SKIP'] in [['Requires DATAFILESPATH'], ['PETSC_HAVE_PYVISTA requirement not…
650 del srcDict[test]
652 if 'TODO' in srcDict[test]:
653 del srcDict[test]
[all …]
/petsc/src/mat/tests/output/
H A Dex214_1.out1 test LU factorization
2 test Cholesky factorization
H A Dex214_2.out1 test LU factorization
2 test Cholesky factorization
/petsc/src/dm/impls/plex/tests/output/
H A Dex11_gmsh_2.out78 Label 'test label':
121 Label 'test label':

12345678910>>...23