-
Notifications
You must be signed in to change notification settings - Fork 69
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to run test suite #269
Comments
As of now, the tests fail, likely due to https://saxonica.plan.io/issues/2212. Closes relaxng#269 Signed-off-by: David Thompson <[email protected]>
As of now, the tests fail, likely due to https://saxonica.plan.io/issues/2212. Closes relaxng#269 Signed-off-by: David Thompson <[email protected]>
It seems like the test suite fails because it uses features of Saxon-EE that the version of Saxon in this repo doesn't support. This suggests to me that Saxon-B was used in this repo at some point, which supported some Saxon-EE features, but then the repo switch over to Saxon-HE (perhaps in f45d16d?). Then again, one of the Saxon-EE features being used is used to reflexively call Java code to create a directory on the filesystem using the |
* Update the docs to explain how to run tests * Create GitHub Actions CI to replace Travis CI Closes relaxng#269 Signed-off-by: David Thompson <[email protected]>
* Update the docs to explain how to run tests * Create GitHub Actions CI to replace Travis CI Closes relaxng#269 Signed-off-by: David Thompson <[email protected]>
* Update the docs to explain how to run tests * Create GitHub Actions CI to replace Travis CI Closes relaxng#269 Signed-off-by: David Thompson <[email protected]>
* Update the docs to explain how to run tests * Create GitHub Actions CI to replace Travis CI Closes relaxng#269 Signed-off-by: David Thompson <[email protected]>
* Update the docs to explain how to run tests * Create GitHub Actions CI to replace Travis CI Closes relaxng#269 Signed-off-by: David Thompson <[email protected]>
* Update the docs to explain how to run tests * Create GitHub Actions CI to replace Travis CI Closes relaxng#269 Signed-off-by: David Thompson <[email protected]>
Just downloaded and built "master" with "BUILD SUCCESSFUL", but "test" doesn't work (on openSUSE 15.5) it seems:
|
@sjvudp I have a PR open to fix the test suite. If you are interested in running the tests, please check it out. It seems like this repo hasn't been active in a while, so I don't know if it will get merged. Also, I'm not sure who is still active on this repo to ask for a review. |
I expect we're all still around, but I've been a bit swamped with other things and I'm not sure I was ever that sure I understood how the build system worked. |
I see two options:
|
The repository says that there is a test suite that I should be able to run with
ant test
, but this doesn't work. How do I run the test suite?Initial investigation:
In a recent change, the ant task in
build.xml
for running the tests was renamed toant-test
to distinguish it from gradle tasks.gradle test
isn't setup to run this task yet. When I try to runant ant-test
, I get an error, saying thatmodbuild.xml
doesn't haveant-test
. The generatedmodbuild.xml
has atest
task, so it's likely just a matter of running the correctmodbuild.xml
task frombuild.xml
.The text was updated successfully, but these errors were encountered: