<div dir="ltr"><div dir="ltr">On Mon, Mar 27, 2023 at 10:19 AM Jacob Faibussowitsch <<a href="mailto:jacob.fai@gmail.com">jacob.fai@gmail.com</a>> wrote:<br></div><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Our testing framework was pretty much tailor-made for the PETSc src tree and as such has many hard-coded paths and decisions. I’m going to go out on a limb and say you probably won’t get this to work...<br></blockquote><div><br></div><div>I think we can help you get this to work. I have wanted to generalize the test framework for a long time. Everything is build by</div><div><br></div><div>  confg/gmakegentest.py</div><div><br></div><div>and I think we can get away with just changing paths here and everything will work.</div><div><br></div><div>  Thanks!</div><div><br></div><div>     Matt</div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
That being said, one of the “base” paths that the testing harness uses to initially find tests is the `TESTSRCDIR` variable in `${PETSC_DIR}/gmakefile.test`. It is currently defined as <br>
```<br>
# TESTSRCDIR is always relative to gmakefile.test<br>
#  This must be before includes<br>
mkfile_path := $(abspath $(lastword $(MAKEFILE_LIST)))<br>
TESTSRCDIR := $(dir $(mkfile_path))src<br>
```<br>
You should start by changing this to<br>
```<br>
# TESTSRCDIR is always relative to gmakefile.test<br>
#  This must be before includes<br>
mkfile_path := $(abspath $(lastword $(MAKEFILE_LIST)))<br>
TESTSRCDIR ?= $(dir $(mkfile_path))src<br>
```<br>
That way you could run your tests via<br>
```<br>
$ make test TESTSRCDIR=/path/to/your/src/dir<br>
```<br>
I am sure there are many other modifications you will need to make.<br>
<br>
Best regards,<br>
<br>
Jacob Faibussowitsch<br>
(Jacob Fai - booss - oh - vitch)<br>
<br>
> On Mar 27, 2023, at 06:14, Daniele Prada <<a href="mailto:daniele.prada85@gmail.com" target="_blank">daniele.prada85@gmail.com</a>> wrote:<br>
> <br>
> Hello everyone,<br>
> <br>
> I would like to use the PETSc Testing System for testing a package that I am developing.<br>
> <br>
> I have read the PETSc developer documentation and have written some tests using the PETSc Test Description Language. I am going through the files in ${PETSC_DIR}/config but I am not able to make the testing system look into the directory tree of my project.<br>
> <br>
> Any suggestions?<br>
> <br>
> Thanks in advance<br>
> Daniele<br>
<br>
</blockquote></div><br clear="all"><div><br></div><span class="gmail_signature_prefix">-- </span><br><div dir="ltr" class="gmail_signature"><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><div>What most experimenters take for granted before they begin their experiments is infinitely more interesting than any results to which their experiments lead.<br>-- Norbert Wiener</div><div><br></div><div><a href="http://www.cse.buffalo.edu/~knepley/" target="_blank">https://www.cse.buffalo.edu/~knepley/</a><br></div></div></div></div></div></div></div></div>